-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (38 loc) · 780 Bytes
/
style.css
File metadata and controls
40 lines (38 loc) · 780 Bytes
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
.box {
width: 100px;
height: 100px;
border: 2px solid black;
cursor: pointer;
transition: 2s;
color: white;
font-size: 30px;
display: flex;
justify-content: center;
align-items: center;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
transition-timing-function: linear;
position: absolute;
left: 0%;
top: 0%;
}
body {
margin: 0%;
padding: 0%;
}
#timer {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
display: flex;
width: 100px;
height: 100px;
border: 2px solid black;
justify-content: center;
align-items: center;
background-color: white;
margin: 10px;
}/*# sourceMappingURL=style.css.map */