-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchrono.css
123 lines (106 loc) · 2 KB
/
chrono.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
* {
padding: 0;
margin: 0;
user-select: none;
}
body {
color: #ffffff;
background-color: #fa003e;
}
h1 {
font-family: "Fredoka One", cursive;
font-size: 4rem;
margin-bottom: 30px;
text-align: center;
margin-top: 20px;
letter-spacing: 3px;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.counter-container {
font-size: 6rem;
color: #ab1a43;
font-family: "Rowdies", cursive;
font-weight: bold;
margin-bottom: 0px;
user-select: none;
}
.flags-container {
width: 30rem;
height: 60%;
max-height: 250px;
background-color: #f8295d;
border-radius: 8px;
overflow-y: scroll;
padding: 10px 0 0 0;
box-sizing: border-box;
display: none;
}
.flags-container::-webkit-scrollbar {
width: 8px;
background-color: #f8295d;
border-radius: 0 8px 8px 0;
}
.flags-container::-webkit-scrollbar-thumb {
width: 8px;
background-color: #fff;
/*border-radius: 0 8px 8px 0;*/
border-radius: 8px;
}
.seconds {
color: #ffffff;
}
.buttons-container {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
button {
border: none;
background-color: #fa003e;
cursor: pointer;
font-size: 1.6rem;
margin: 0 10px;
padding: 10px;
outline: none;
color: #ffffff;
user-select: none;
}
#play {
font-size: 4rem;
}
button:hover {
background-color: #f8295d;
}
.line-separator {
width: 100%;
height: 10px;
background-color: #ffffff;
margin-bottom: 15px;
display: none;
}
.flag {
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 2rem;
margin-bottom: 10px;
}
.flag-position {
margin-right: 30px;
}
@media screen and (max-width: 560px) {
.counter-container {
font-size: 4rem;
}
.flags-container {
width: 20rem;
height: 50%;
}
}