-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (87 loc) · 1.52 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
* {
margin: 0px;
padding: 0px;
}
body {
width: 100vw;
height: 100vh;
}
body::before {
content: "";
background: url(back_1.jpg);
background-size: 100% 100%;
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
filter: blur(2px);
z-index: -1;
}
body img:first-child {
position: absolute;
top: 0;
left: 0;
}
body img:nth-child(2) {
position: absolute;
top: 0;
right: 0;
}
body img {
visibility: hidden;
}
#container {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#container p {
color: white;
font-family: 'Kaushan Script', cursive;
font-size: 60px;
}
#data {
width: 750px;
height: 180px;
background-color: rgba(106, 106, 106, 0.3);
display: flex;
justify-content: space-around;
align-items: center;
border-top-left-radius: 45px;
border-bottom-right-radius: 45px;
box-shadow: 1px 1px 5px 2px white;
}
#data div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#data p {
font-family: 'Courier New', Courier, monospace;
font-size: 35px;
font-weight: bold;
}
#data div p:first-child {
font-size: 80px;
}
@keyframes temp {
0% {
transform: scale(1);
}
25% {
transform: scale(1.25);
}
50% {
transform: scale(1);
}
75% {
transform: scale(1.25);
}
100% {
transform: scale(1);
}
}