-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (92 loc) · 1.59 KB
/
style.css
File metadata and controls
100 lines (92 loc) · 1.59 KB
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
*{
/* background-color: black; */
background-color: red;
font-family: 'Orbitron', sans-serif;
}
button{
cursor: pointer;
font-size: 4rem;
/* border: red 3px solid; */
border: black 3px solid;
background-color: red;
}
h1{
font-size: 68px;
text-align: center;
color: rgb(6, 247, 247);
}
#reveal{
text-align: center;
cursor: pointer;
/* color: red; */
color:black;
text-decoration: seashell;
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
}
.reveal{
text-align: center;
}
div {
display: inline-table;
line-height: 1;
padding: 20px;
font-size: 40px;
text-align: center;
align-items: center;
align-self: stretch;
margin: 5px;
padding: auto;
visibility: hidden;
}
#timer{
display: flexbox;
border-spacing: 10px;
align-items: center;
align-items: flex-end;
width: 100%; }
span {
display: block;
font-size: 30px;
/* color: red; */
color: black;
}
#days{
font-size: 75px;
color:yellowgreen;
justify-items: center;
}
#hours{
font-size: 75px;
color: yellowgreen;
}
#minutes{
font-size: 75px;
color: yellowgreen;
}
#seconds{
font-size: 50px;
color: yellowgreen;
}
img {
animation: blink-animation 1s steps(5, start) infinite;
transform: scaleY(-1);
}
@keyframes blink-animation {
to {
visibility: hidden;}
}
a{
cursor: pointer;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: white;
text-align: center;
font-size: 1em;
}