-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
89 lines (77 loc) · 1.83 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
html, body {
font-family: "arial", sans-serif;
width: 330px;
height: 39px; /*some 23px */
line-height: 27px;
overflow: hidden;
background:transparent;
padding: 0;
margin: 0;
}
doesnotexist:-o-prefocus, html, body {
height: 39px !important;
}
form {
padding: 0;
margin: 0;
text-align:center;
position: fixed;
left: 10px;
right: 10px;
top: 5px;
}
input {
border: 1px solid #72a4f3;
cursor: default;
display: inline-block;
font-size: 11px;
font-weight: bold;
height: 27px;
line-height: 27px;
min-width: 33px;
padding: 0 8px;
text-align: center;
-moz-transition: all 0.218s, visibility 0s;
transition: all 0.218s, visibility 0s;
}
input[name="seconds"], input[name="minutes"] {
width: 33px;
font-size: 15px;
margin-right: 4px;
}
#mlb, #slb {
font-family: "arial", sans-serif;
}
input[type="submit"] {
width: 127px;
height: 29px
}
input[submit]:focus {
outline: none;
-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5)
}
input[submit]:hover {
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1)
}
input[submit]:active {
-moz-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3)
}
.blue_button {
background-image: -moz-linear-gradient(top, #4d90fe, #4787ed);
background-image: linear-gradient(top, #4d90fe, #4787ed);
border: 1px solid #3079ed;
background-color: #4d90fe;
color: #fff
}
.blue_button:focus {
border-color: #4d90fe
}
.blue_button:hover {
background-image: -moz-linear-gradient(top, #357ae8, #357ae8);
background-image: linear-gradient(top, #4d90fe, #357ae8);
border-color: #2f5bb7;
background-color: #357ae8
}