-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (40 loc) · 822 Bytes
/
styles.css
File metadata and controls
47 lines (40 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #001F2E;
font-family: Arial, sans-serif;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.logo-container {
width: 80%;
max-width: 400px;
}
.logo-container svg {
width: 100%;
height: auto;
}
/* SVG fill color will be set via TypeScript */
@keyframes shake {
0% { transform: translateX(0); }
25% { transform: translateX(-10px); }
50% { transform: translateX(10px); }
75% { transform: translateX(-10px); }
100% { transform: translateX(0); }
}
.shake {
animation: shake 0.2s ease-in-out;
}