-
Notifications
You must be signed in to change notification settings - Fork 24
/
style.css
123 lines (107 loc) · 2.59 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body {
font-family: "Open Sans", Arial, sans-serif;
-webkit-font-smoothing: antialiased;
min-width: 700px;
}
table {
width: 100%;
border-spacing: 4px;
}
td {
padding: 2px 0px;
text-align: center;
}
td:nth-of-type(3) {
text-align: left;
}
td.success {
background-color: #1987ac;
color: white;
font-weight: bold;
text-align: center;
}
td.info {
background-color: lightgreen;
color: black;
font-weight: bold;
text-align: center;
}
td>a {
white-space: nowrap;
}
p.error {
padding: 1em;
background-color: #cc3329;
color: white;
font-weight: bold;
text-align: center;
}
button {
border-radius: 1px;
font-family: "Open Sans", Arial, sans-serif;
font-size: 14px;
border: 1px solid transparent;
margin: 0;
padding: 7px 5px;
position: relative;
text-align: center;
text-decoration: none;
-moz-transition: all .1s;
-o-transition: all .1s;
-webkit-transition: all .1s;
transition: all .1s;
font-size: 11px;
color: #929292;
margin-top: 5px;
font-weight: 600;
background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0%, #f5f5f5), color-stop(100%, #eee));
background-image: -moz-linear-gradient(#f5f5f5, #eee);
background-image: -webkit-linear-gradient(#f5f5f5, #eee);
background-image: linear-gradient(#f5f5f5, #eee);
width: auto;
cursor: pointer;
display: inline-block;
}
button#submit {
background-color: #1987ac;
background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0%, #5195d4), color-stop(100%, #1987ac));
background-image: -moz-linear-gradient(#5195d4, #1987ac);
background-image: -webkit-linear-gradient(#5195d4, #1987ac);
background-image: linear-gradient(#5195d4, #1987ac);
color: white;
}
i {
font-size: 80%;
}
.success {
color: #11dda9;
}
.warning {
color: #f79423;
}
.error {
color: #cc3329;
}
button:hover {
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0%, #f5f5f5), color-stop(100%, #eee));
background-image: -moz-linear-gradient(#f5f5f5, #eee);
background-image: -webkit-linear-gradient(#f5f5f5, #eee);
background-image: linear-gradient(#f5f5f5, #eee);
border-color: #e6e6e6;
-moz-box-shadow: inset 0 -1px 0 #e6e6e6;
-webkit-box-shadow: inset 0 -1px 0 #e6e6e6;
box-shadow: inset 0 -1px 0 #e6e6e6;
color: #595959;
}
.littleButton {
float: right;
margin-top: 2px;
}
fieldset {
border: none;
background-color: #eee;
line-height: 32px;
padding: 5px;
margin: 0px;
}