-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstopwatch.css
More file actions
60 lines (51 loc) · 1.23 KB
/
Copy pathstopwatch.css
File metadata and controls
60 lines (51 loc) · 1.23 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
.container{
height: 200px;
width: 100%;
background: #91B2C7;
}
#display{
width: 100%;
font-size: 72px;
text-align: center;
margin: 0px auto;
background: #91B2C7;
}
.button{ text-align: center;}
.buttonStart, .buttonReset, .buttonLap,
.buttonClear{
text-align: center;
background: #91B2C7;
color: #000000;
border: solid 1px #000000;
font-size:1.4em;
padding:18px 10px;
width:120px;
margin:10px;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
border-radius: 25px;
transition: ease-out 0.3s;
box-shadow: inset 0 0 0 0 #ffffff;
}
.buttonStart:hover, .buttonReset:hover,
.buttonLap:hover,
.buttonClear:hover{
color: white;
border: solid 1px white;
}
#lapCounter{
text-align: center;
width: 100%;
color: black;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size:40px;
}
ul{
margin: 1px 0;;
padding:0;
margin-bottom:2px;
}
body {
background: #91B2C7;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
height:100%;
}