-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (108 loc) · 1.79 KB
/
style.css
File metadata and controls
124 lines (108 loc) · 1.79 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
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
124
body {
margin: 0px;
background-color: #000530;
display: block;
height: 100vh;
width: 100vw;
position: absolute;
}
#background-image {
display: block;
position: fixed;
height: 100vh;
width: 100vw;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.button{
letter-spacing: 2px;
text-align: center;
font-size: 16px;
color: #fff;
padding: 20px;
border-radius: 20px;
box-sizing: border-box;
background: #0074D9;
border-style: none;
cursor: pointer;
}
button:hover,
button:active,
button:focus{
font-weight: bold;
}
#panel {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 30px;
background-color: #282828c7;
border-radius: 25px;
}
#tool-bar{
margin-top: 40px;
display: flex;
align-items: center;
justify-content: center;
}
#footer {
width: 100%;
position: fixed;
bottom: 0;
background-color: #282828c7;
}
#theme-dropdown {
float: right;
margin-top: 20px;
margin-bottom: 20px;
margin-right: 120px;
}
#clock{
color: #fff;
display: inline-flex;
text-align: center;
}
#clock span :first-child{
width: 160px;
padding: 20px;
font-size: 60px;
border-radius: 20px;
box-sizing: border-box;
margin: 20px;
}
#clock span :nth-child(2){
text-transform: uppercase;
font-size: 16px;
letter-spacing: 2px;
text-shadow: 1px 1px 1px rgba(10,10,10, 0.8);
}
#hours .number{
background: #fa5559;
}
#minutes .number{
background: #26c2b9;
}
#seconds .number{
background: #f6bc58;
}
#numbers:after{
content: "";
display: block;
clear: both;
}
#timer-input{
height: 5vh;
width: 5vw;
font-size: 26px;
margin-right: 10px;
border-radius: 10px;
}
span.turn{
animation: turn 0.7s ease forwards;
}
@keyframes turn{
0%{transform: rotateX(0deg)}
100%{transform: rotateX(360deg)}
}