-
Notifications
You must be signed in to change notification settings - Fork 21
/
styles.css
155 lines (130 loc) · 3.18 KB
/
styles.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/* -------
* widget
* -------
*/
div.widget, div.widget_action, div.widget_title {
border: solid #ccc 1px;
-webkit-box-shadow: 0 2px 2px #ccc;
-moz-box-shadow: 0 2px 6px #ccc;
box-shadow: 0 2px 6px #ccc;
background-color: white;
margin-bottom: 2em;
padding: 1em;
}
/* -------
* table
* -------
*/
table.bordered {
*border-collapse: collapse; /* IE7 and lower */
border-spacing: 0;
width: 100%;
}
table.bordered {
border: solid #ccc 1px;
box-shadow: 0 2px 6px #ccc;
}
table.bordered tr.odd, table.bordered tr.even {
}
table.bordered tr.odd:hover, table.bordered tr.even:hover {
background-color: #efffff;
}
table.bordered td, table.bordered th {
border-left: 1px solid #ccc;
border-top: 1px solid #ccc;
padding: 10px;
}
table.bordered tr:first-child th {
border-top: 0;
}
table.bordered tr:last-child td {
border-bottom: 0;
}
table.bordered tr td:first-child,
table.bordered tr th:first-child {
border-left: 0;
}
table.bordered tr td:last-child,
table.bordered tr th:last-child {
border-right: 0;
}
table.bordered th {
background-color: #fff;
background-image: -webkit-linear-gradient(top, #f2f2f2, #f2f2f2);
background-image: -moz-linear-gradient(top, #f2f2f2, #f2f2f2);
background-image: -ms-linear-gradient(top, #f2f2f2, #f2f2f2);
background-image: -o-linear-gradient(top, #f2f2f2, #f2f2f2);
background-image: linear-gradient(top, #f2f2f2, #f2f2f2);
-webkit-box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
-moz-box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
border-top: none;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
text-align: center;
color: #0f87c3;;
font-weight: bold;
}
table.bordered tr.odd {
background-color: white;
}
table.bordered tr.even {
background-color: #f2f2f2;
}
/**
* unbordered table
*/
table.unbordered {
*border-collapse: separate; /* IE7 and lower */
width: 100%;
}
table.unbordered tr.odd, table.unbordered tr.even {
border-bottom: solid 1px transparent;
}
table.unbordered tr.odd:hover, table.unbordered tr.even:hover {
border-bottom: solid 1px #aaaaaa;
}
table.unbordered td, table.unbordered th {
padding: 1px;
vertical-align: bottom;
}
table.unbordered th {
background-color: #fff;
font-weight: bold;
color: #0f87c3;;
}
table.unbordered tr.odd {
background-color: #FFFFFF;
}
table.unbordered tr.even {
background-color: #f2f2f2;
}
input[type="submit"] {
width:100px;
background:#09C;
color:#fff;
font-family: Tahoma, Geneva, sans-serif;
height:30px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
border: 1p solid #999;
}
input[type="submit"]:hover {
background:#fff;
color:#09C;
}
input, select {
border: 1px solid #999;
background-color: white;
height: 30px;
-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}
input {
padding-left: 3px;
padding-right: 3px;
}
textarea:focus, input:focus {
border: 1px solid #09C;
}