-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (59 loc) · 1.19 KB
/
style.css
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
color: rgba(255, 255, 255, 0.87);
background-color: #242424;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
display: flex;
place-items: center;
min-width: 320px;
min-height: 100vh;
}
h1 {
font-size: 3.2em;
line-height: 1.1;
top: 0px;
}
#app {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
display: flex;
flex-direction: column;
height: 100vh;
gap: 50px;
}
.card {
padding: 2em;
}
#data-user {
display: flex;
}
#animation {
display: flex;
max-width: 100%;
max-height: max-content;
}
#result {
animation: myfirst 5s linear 2s infinite alternate;
color: black;
position: relative;
font-size: x-large;
}
@keyframes myfirst {
0% {color:red; left:0px; top:0px;}
25% {color:rgb(0, 255, 21); left:200px; top:0px;}
50% {color:blue; left:200px; top:200px;}
75% {color:green; left:0px; top:200px;}
100% {color:red; left:0px; top:0px;}
}