-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (62 loc) · 1.12 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
*{
margin: 0;
padding: 0;
text-align: center;
}
body{
background-image: url(Resources/startingLine.gif);
background-size: cover;
}
#clock{
margin: 0 auto;
max-width: 600px;
min-height: 200px;
border: solid black 2px;
border-radius: 10px;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
display: flex;
justify-content: space-evenly;
align-items: center;
flex-direction: column;
background-color: rgb(66, 134, 189);
}
#longDate{
display: flex;
font-size: 1.5rem;
flex-direction: row;
}
#time{
display: flex;
font-size: 1.5rem;
flex-direction: row;
}
#timer{
display: flex;
font-size: 2rem;
flex-direction: row;
}
#lapOl{
display: flex;
font-size: 1.5rem;
flex-direction: column;
}
li{
margin:2%;
}
#buttons{
display: flex;
font-size: 1.5rem;
flex-direction: row;
}
button{
border: solid black 1px;
border-radius: 5px;
background-color: rgb(66, 134, 189);
font-size: 1.5rem;
margin-right: 20px;
padding: 10px 20px;
color: black;
}
@media only screen and (max-width: 600px) {
}