-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (53 loc) · 1.11 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
::-webkit-input-placeholder {color:#DCDCDC;}
::-moz-placeholder {color:#DCDCDC;}/* Firefox 19+ */
:-moz-placeholder {color:#DCDCDC;}/* Firefox 18- */
:-ms-input-placeholder {color:#DCDCDC;}
body {
font-family: Trebuchet MS, sans-serif;
}
th {
padding: 2px 5px 2px 5px;
}
table {
border: 1px solid #A9A9A9;
}
td.number {
cursor: pointer;
}
#container {
position:absolute;
margin-top:1%;
margin-left:32%;
}
input {
margin: 5px;
padding: 5px 0px 5px 0px;
outline: none;
width: 80px;
border: 1px solid #A9A9A9;
outline: none;
font: 16px/1 Trebuchet MS, sans-serif;
text-align: center;
}
button {
background-color: #333333;
color: #e6e6e6;
width: 80px;
border: none;
padding: 5px 0px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
-webkit-user-select: none;
}
button:hover {
background-color: #595959;
color: white;
}
button:focus {
outline: none !important
}