-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (54 loc) · 998 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*Custom Styles*/
body { font-family: sans-serif;color:#333;}
.tile {
text-align: center;
height: 100%;
padding: 2.5% 0;
background-color: #ececec;
outline: 1px solid #FFF;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
}
.grid-10-10 .tile {
padding: 0%;
}
.nav-menu {
padding:2%;
}
.container {
margin:5% 10%;
}
.blank p {
opacity: 0;
}
.time-container{
text-align: right;
}
.time-container h1 {
font-size: 2em;
}
.success-text {
font-size: 18px;
font-style: italic;
}
.success-button {
font-size: 14px;
padding-top:1%;
margin-left: 1%;
text-align: right;
}
.success-box {
display: none;
}
.reset-button, .undo-button {
float: left;
margin-right:1%;
}
@media only screen and (min-width: 450px) and (max-width: 640px) {
.time-container h1 { font-size: 1.5em; }
}
@media only screen and (max-width: 450px) {
.time-container h1 { font-size: 1.3em; }
}