This repository has been archived by the owner on Jan 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
site.css
101 lines (90 loc) · 2.11 KB
/
site.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
body{
background-color: #484848;
color:#fff;
font-family:arial;
text-align:center;
text-shadow:#000 0 0 3px;
}
img{
border:0;
}
table.reg{
width:600px;
margin:40px 0 0 90px;
}
div.copy{
color:#ccc;
font-size:12px;
font-family:arial;
text-align:center;
font-weight: bold;
}
div.errors{
color:#fff;
font-family:arial;
font-size:12px;
font-weight:bold;
text-align:center;
}
table.form{
width:100%;
color:#fff;
margin:15px 0;
font-family:arial;
border-spacing: 5px;
font-size:16px;
}
table.form{
width:100%;
color:#fff;
margin:15px 0;
font-family:arial;
border-spacing: 5px;
font-size:16px;
}
input, select{
width:200px;
padding:3px;
background-color:#f7f7f7;
color:#454545;
border:0;
font-size:14px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px;
box-shadow: 0px 0px 3px #000;
-moz-box-shadow: 0px 0px 3px #000;
-webkit-box-shadow: 0px 0px 3px #000;
}
input:focus, select:focus{
box-shadow: 0px 0px 3px #fff;
-moz-box-shadow: 0px 0px 3px #fff;
-webkit-box-shadow: 0px 0px 3px #fff;
color:#1b1b1b;
}
input.sbm{
width:auto;
padding:3px 15px;
background-color: #3d8bff;
color:#dfdfdf;
border:0;
font-size:14px;
-moz-border-radius: 0px;
margin-top:30px;
-webkit-border-radius: 0px;
border-radius: 0px;
box-shadow: 0px 0px 1px #ccc;
-moz-box-shadow: 0px 0px 1px #ccc;
-webkit-box-shadow: 0px 0px 1px #ccc;
}
input.sbm:hover{
box-shadow: 0px 0px 3px #fff;
-moz-box-shadow: 0px 0px 3px #fff;
-webkit-box-shadow: 0px 0px 3px #fff;
color:#fff;
background-color: #3d8bff;
}
a:link {color:#ccc;}
a:visited {color:#ccc;}
a:hover {color:#ccc;}
a:active {color:#ccc;}