-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
143 lines (120 loc) · 2.32 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
*{
margin:0;
padding:0;
}
html{
overflow:auto;
}
body{
font-size:0.825em;
color:#eee;
background:url("img/bg.png") repeat-x #222222;
font-family:Arial, Helvetica, sans-serif;
}
#carbonForm{
background-color:#1C1C1C;
border:1px solid #080808;
margin:20px auto;
padding:20px;
width:500px;
-moz-box-shadow:0 0 1px #444 inset;
-webkit-box-shadow:0 0 1px #444 inset;
box-shadow:0 0 1px #444 inset;
}
#carbonForm h1{
font-family:Century Gothic,Myriad Pro,Arial,Helvetica,sans-serif;
font-size:40px;
font-weight:normal;
padding:0 0 30px 10px;
text-align:left;
}
.fieldContainer{
background-color:#1E1E1E;
border:1px solid #0E0E0E;
padding:30px 10px;
-moz-box-shadow:0 0 20px #292929 inset;
-webkit-box-shadow:0 0 20px #292929 inset;
box-shadow:0 0 20px #292929 inset;
}
#carbonForm,.fieldContainer{
-moz-border-radius:12px;
-webkit-border-radius:12px;
border-radius:12px;
}
.signupButton{
text-align:center;
padding:30px 0 10px;
}
#submit{
/* The submit button */
border:1px solid #f4f4f4;
cursor:pointer;
height:40px;
text-indent:-9999px;
text-transform:uppercase;
width:110px;
background:url("img/submit.png") no-repeat center center #d0ecfd;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
}
#submit.active{
background-image:url("img/preloader.gif");
}
#submit:hover{
background-color:#dcf2ff;
border:1px solid white;
}
.info {
padding: 5px;
border: 1px solid #DEDEDE;
margin: 5px 0;
background: #EFEFEF;
color: #222222;
text-align: center;
}
.warning {
padding: 5px;
border: 1px solid #DEDEDE;
margin: 5px 0;
background: #FFFFCC;
color: #222222;
text-align: center;
}
.success {
padding: 5px;
border: 1px solid #349534;
margin: 5px 0;
background: #C9FFCA;
color: #008000;
font-weight: bold;
text-align: center;
}
.error {
padding: 5px;
border: 1px solid #CC0000;
margin: 5px 0;
background: #F7CBCA;
color: #CC0000;
font-weight: bold;
text-align: center;
}
fieldset {
overflow: hidden;
margin-bottom: 5px;
display: inline-block;
width: 450px;
border: 0;
}
label {
float: left; width: 200px;
}
input {
width: 200px;
}
#update {
width: 70px !important;
}
#status {
margin-bottom: 20px;
}