-
Notifications
You must be signed in to change notification settings - Fork 0
/
Timer.Css
44 lines (36 loc) · 923 Bytes
/
Timer.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
.container{
height: 200px;
width: 100%;
background: #91B2C7;
}
#timer{
width: 100%;
font-size: 72px;
text-align: center;
margin: 0px auto;
background: #91B2C7;
}
.button{ text-align: center;}
.buttonStart, .buttonReset{
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{
color: white;
border: solid 1px white;
}
body {
background: #91B2C7;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
height:100%;
}