-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
71 lines (60 loc) · 1.21 KB
/
stylesheet.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
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgb(26, 26, 26);
font-size: 48px;
color: rgba(255, 255, 255, 0.1);
font-family: Montserrat, sans-serif;
}
.wrapper {
display: flex;
flex-direction: column;
gap: 50px;
margin-top: 104px;
}
.clockFace {
align-self: center;
}
.date {
align-self: center;
}
.r1, .r2, .r3, .r4, .r5, .r6, .r7, .r8, .r9, .r10 {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 0px;
width: 660px;
height: 60px;
}
.c1, .c2, .c3, .c4, .c5, .c6, .c7, .c8, .c9, .c10, .c11 {
/* color: rgba(255, 255, 255, 1); */
width: 60px;
height: 60px;
text-align: center;
}
.date {
font-size: 36px;
color: rgba(255, 255, 255, 0.4);
}
.fireUp {
color: #fff;
}
/* メモ
あの時計の表記ルールがわからん
Nine o’clock - 9:00
Five Past Nine - 9:05
Ten Past Nine - 9:10
Quarter Past Nine - 9:15
Twenty Past Nine - 9:20
Twenty Five Past Nine - 9:25
Half Past Nine - 9:30
Twenty Five to Ten - 9:35
Twenty to Ten - 9:40
Quarter to Ten - 9:45
Ten to Ten - 9:50
Five to Ten - 9:55
Ten o’clock - 10:00
*/