-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (40 loc) · 833 Bytes
/
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
/*The @mixin directive lets you create CSS code that is to be reused throughout the website.
The @include directive is created to let you use (include) the mixin.
*/
/* corners is mixin*/
body {
background: #202020;
color: white;
}
button {
width: 100px;
height: 30px;
border: 3px soldi white;
border-radius: 50px;
background: #202020;
color: white;
cursor: pointer;
outline: none;
}
button:hover{
background:aqua;
border: solid 1px white;
color:black;
}
#stopwatch {
font-size: 100px;
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -55%);
}
#buttons {
position: absolute;
top: 55%;
left: 48.4%;
transform: translate(-51.6%, -45%);
}
#buttons li {
display: inline;
padding-left: 10px;
}