-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (44 loc) · 796 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
47
48
49
50
body{
margin: 0;
padding: 0;
background-color: rgb(187, 250, 240);
height: 100%;
font-family: sans-serif;
}
#container{
color: black;
text-align: center;
margin: 30px;
}
#display {
margin-top: 10vh;
border: 1px solid rgb(138, 138, 138);
border-radius: 5px;
}
h1{
font-size: 2rem;
font-weight: 400;
}
.time-text{
font-size: 2vw;
color: gray;
}
#seconds, #milliSeconds ,#hours,#minutes{
font-size: 6vw;
}
button{
width: 180px;
padding:15px 10px;
border-radius: 5px;
background-color: #f12424;
color: white;
border: 1px solid white;
margin: 10px;
cursor: pointer;
font-size: 1.2em;
}
button:hover{
transition: all 0.5 ease-in-out;
background-color: #ffffff;
color: #f12424;
}