-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (49 loc) · 1.02 KB
/
style.css
File metadata and controls
58 lines (49 loc) · 1.02 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
body {
/* background-color: #212121; */
font-family: Arial, sans-serif;
margin: 0;
color: white;
}
.container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1.5fr 0.5fr;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"hours_time min_time sec_time"
"hours min sec";
justify-content: space-evenly;
}
.hours_time {
grid-area: hours_time;
}
.min_time {
grid-area: min_time;
}
.sec_time {
grid-area: sec_time;
}
.hours {
grid-area: hours;
}
.min {
grid-area: min;
}
.sec {
grid-area: sec;
}
.num {
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0px 0px 5px rgba(255, 255, 255, 0.8);
-webkit-text-stroke: 2px black;
text-align: center;
font-size: 4cm;
font-weight: 600;
}
.telem {
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0px 0px 5px rgba(255, 255, 255, 0.8);
-webkit-text-stroke: 1.3px rgb(20, 20, 20);
text-align: center;
font-size: calc(0.3 * 4cm);
font-weight: 600;
}