-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (81 loc) · 1.5 KB
/
style.css
File metadata and controls
88 lines (81 loc) · 1.5 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
* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
box-sizing: border-box;
}
body {
font-size: 20px;
margin: 0;
padding: 0;
background-color: rgb(6, 58, 107);
}
.head {
text-align: center;
background-color: skyblue;
padding: 10px;
border-radius: 20px;
width: 95vw;
margin-right: auto;
margin-left: auto;
border: 3px solid;
cursor: default;
}
#let {
background-color: lightblue;
padding: 10px;
text-align: center;
margin-left: auto;
margin-right: auto;
width: 98vw;
border-radius: 25px;
cursor: default;
}
#let .let {
font-size: 1em;
}
#let .let:nth-child(1) {
color: blue;
font-weight: 1000;
}
#text {
width: 98vw;
border-radius: 20px;
padding: 10px;
font-size: 20px;
border: none;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 5px;
}
.time .ct {
display: block;
font-size: 3em;
color: cyan;
text-align: center;
border: 2px solid;
border-radius: 20px;
margin-right: auto;
margin-left: auto;
text-align: center;
width: 190px;
cursor: default;
}
button {
display: none;
margin-left: 20vw;
margin-top: 20px;
padding: 10px;
border: 2px transparent;
border-radius: 50px;
font-size: 20px;
cursor: pointer;
transition: 0.5s;
}
button:hover {
background-color: dodgerblue;
}
@media (min-width: 470px) {
#let .let {
font-size: 1.3em;
letter-spacing: 10px;
}
}/*# sourceMappingURL=style.css.map */