-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (58 loc) · 913 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
72
73
74
body
{
height: 100%;
margin: 0px;
padding: 0px;
background: #313853;
font-family: Tahoma,Verdana,Segoe,sans-serif;
color: #444;
}
div
{
box-sizing: border-box;
}
h3
{
font-weight: normal;
}
.main
{
width: 70%;
height: 100%;
margin-left: 15%;
margin-right: 15%;
padding: 32px;
min-width: 400px;
min-height: 740px;
background: #eee;
}
input[type=number]
{
height: 40px;
padding: 12px;
font-size: 24px;
text-align: center;
border: 0px;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button
{
-webkit-appearance: none;
margin: 0;
}
input[type=number]
{
-moz-appearance: textfield;
}
#time
{
font-weight: bold;
}
@media screen and ( max-width: 800px )
{
.main
{
width: 100% !important;
margin-left: 0%;
margin-right: 0%;
}
}