-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (102 loc) · 1.89 KB
/
style.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
html, body{
width:100%;
height: 100%;
margin:0;
}
body{
background-color: #0b0b0b;
display: flex;
align-items: center;
justify-content: center;
}
p{
margin: 0;
}
.clock{
width: 800px;
height: 800px;
padding: 30px;
background-color: #1c1c1c;
border-radius: 20px;
text-align: center;
position: relative;
}
.row{
display: flex;
flex-direction: row;
}
.wordDiv{
display: flex;
flex-direction: row;
}
.letter{
width: 80px;
height: calc(800px / 10);
}
.letter p{
position: relative;
top: 50%;
transform: translateY(-50%);
color: rgba(255, 255, 255, 0.18);
font-family: "JetBrains Mono",monospace;
font-size: 2rem;
}
.on .letter p{
color: #ffa75c;
text-shadow: 0 0 20px #ffa75c;
}
::selection {
background:rgba(255, 167, 92, 0.51);
}
::-moz-selection {
background: rgba(255, 167, 92, 0.51);
}
.minuteDots{
position: absolute;
display: flex;
flex-direction: row;
left: 50%;
transform: translateX(-50%);
}
.dot{
width: 10px;
height: 10px;
border-radius: 50px;
background-color: rgba(255, 255, 255, 0.18);
margin: 0 10px;
}
.active{
background-color: #ffa75c;
box-shadow: 0 0 20px 1px #ffa75c;
}
.addDisplay{
position: relative;
width: 50px;
height: 150px;
background-color: #1c1c1c;
border-radius: 10px;
margin-left: 10px;
display: flex;
flex-direction: column;
justify-content: center;
}
.txtContainer{
font-size: 25px;
text-align: center;
color: rgba(255, 255, 255, 0.18);
font-family: "JetBrains Mono",monospace;
}
.seconds, .ampm{
height: 75px;
}
.seconds{
line-height: 75px;
}
.am, .pm{
line-height: 30px;
font-size: 20px;
}
.currentlyOn{
color: #ffa75c;
text-shadow: 0 0 20px #ffa75c;
}