-
Notifications
You must be signed in to change notification settings - Fork 9
/
style.css
82 lines (79 loc) · 2.71 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
body {
font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
font-size:16px;
line-height:1.6;
word-wrap:break-word
}
#main {
max-width: 960px;
margin: auto;
}
.body {
margin: 1em 0;
}
table { text-align: center; margin: auto;}
td,th {
padding: 0px 10px 0px 10px;
}
td:first-child,th:first-child {
border-right-style:solid;
}
a.button { text-decoration: none; color: inherit; }
.button {
font: inherit;
-webkit-appearance: none;
padding: 0.5em 1em;
display: inline-block;
border: 1px solid #b3b3b3;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
cursor: pointer;
min-width: 1em;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
/* Internet Explorer */*background: #F6F6F6;
background: #F6F6F6;
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr=#FFF6F6F6, endColorstr=#FFf1f1f1);
/* Recent browsers */background-image: -webkit-gradient(linear,left top, left bottom,from(#F6F6F6),to(#f1f1f1));
background-image: -webkit-linear-gradient(top,#F6F6F6,#f1f1f1);
background-image: -moz-linear-gradient(top,#F6F6F6,#f1f1f1);
background-image: -o-linear-gradient(top,#F6F6F6,#f1f1f1);
background-image: linear-gradient(top,#F6F6F6,#f1f1f1);
text-decoration: none;
-moz-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
-webkit-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
.button:hover, .button:focus {
box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
border-color: #999999;
color: black;
/* Internet Explorer */*background: #F6F6F6;
background: #F6F6F6;
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr=#FFF6F6F6, endColorstr=#FFd6d6d6);
/* Recent browsers */background-image: -webkit-gradient(linear,left top, left bottom,from(#F6F6F6),to(#d6d6d6));
background-image: -webkit-linear-gradient(top,#F6F6F6,#d6d6d6);
background-image: -moz-linear-gradient(top,#F6F6F6,#d6d6d6);
background-image: -o-linear-gradient(top,#F6F6F6,#d6d6d6);
background-image: linear-gradient(top,#F6F6F6,#d6d6d6);
text-decoration: none;
}
.button:active {
box-shadow: 0px 1px 3px rgba(0,0,0,0.2) inset;
-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.2) inset;
-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.2) inset;
}
.button:focus, .button:hover {
box-shadow: 0 0 4px 2px #3366DD;
-moz-box-shadow: 0px 1px 3px #3366DD;
-webkit-box-shadow: 0px 1px 3px #3366DD;
}
input,select { font-size: 1em; line-height: 2em; height: 2em; }