-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrontend.css
178 lines (178 loc) · 3.77 KB
/
frontend.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
body{
font-family: helvetica,arial,sans-serif;
font-size:11pt;
background-color:#EEEEEE;
}
form,input,textarea {
font-family: helvetica,arial,sans-serif;
}
#quote{
background:white url(quote.png) no-repeat center center;
height: 44px;
margin-top: 120px;
}
#login_form{
width:400px;
margin-top:30px;
/*
margin:100px auto 40px;
padding:10px 30px 25px;
border:1px solid #eee;
border-radius:5px;
box-shadow:0px 0px 5px 0px #AAAAAA;
*/
}
.no_bar{
margin-top:20px!important;
}
#login_form h3{
color:#444;
}
#login_form form, #add_survey form{
text-align:center;
}
#login_form label,#add_survey label{
display:none;
}
#login_form input, #add_survey input, #add_survey textarea{
width: 90%;
border-radius:5px;
border:1px solid #aaa;
padding:5px;
margin: 5px auto;
color:#bbb;
font-size:15px;
}
#login_form input:focus, #add_survey input:focus, #add_survey textarea:focus{
box-shadow:0px 0px 3px 1px #AAeeAA;
color:#333;
}
#login_form .subm, #add_survey .subm{
color:#333;
background-color:#eee;
cursor:pointer;
}
#login_form #or{
color:#777;
font-style:italic;
}
div.success, div.error{
color: #FFFFFF;
width:83%;
border-radius:4px;
margin: 25px auto;
padding: 7px 14px;
/*
border: 1px solid rgba(0, 0, 0, 0.5);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;
*/
}
div.error a{
color:white;
text-decoration:none;
border-bottom:1px solid white;
}
div.success{
background: #3B8230;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#76BF6B', endColorstr='#3B8230');
background: -webkit-gradient(linear, left top, left bottom, from(#76BF6B), to(#3B8230));
background: -moz-linear-gradient(top , #76BF6B, #3B8230);
}
div.error{
background: #C43C35;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EE5F5B', endColorstr='#C43C35');
background: -webkit-gradient(linear, left top, left bottom, from(#EE5F5B), to(#C43C35));
background: -moz-linear-gradient(top , #EE5F5B, #C43C35);
}
#top_bar{
position:fixed;
top:0;
left:0;
height:35px;
width:100%;
background: #232323;
/*
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#232323', endColorstr='#343434');
background: -webkit-gradient(linear, left top, left bottom, from(#232323), to(#343434));
background: -moz-linear-gradient(top , #232323, #343434);
box-shadow: 0 0 3px 1px #343434;
*/
color:#fff;
padding:11px 0 3px;
}
#top_bar h1{
margin:2px 0 0 30px;
font-size:20px;
color:#EEEEEE;
/* text-shadow:1px 1px 1px rgba(0, 0, 0, 1); */
letter-spacing:3;
cursor:pointer;
}
#top_bar span{
color: #EEEEEE;
position: absolute;
right:30px;
top:13px;
padding: 2px 8px;
}
#top_bar a{
margin-left:10px;
color: #888888;
/*
background-color: #444444;
border: 1px solid #777777;
border-radius:5px;
padding: 2px 8px;
*/
text-decoration:none;
}
#top_bar a:hover{
color: #EEEEEE;
}
#wrapper{
width:900px;
padding:0 30px 20px;
border:1px solid #cccccc;
background-color:#FFFFFF;
/* border-radius:5px; */
margin:75px auto 5px;
}
#wrapper h2{
margin-top:30px;
}
#wrapper #steps{
color: #777777;
font-family: georgia,times,serif;
font-size: 24px;
font-style: italic;
}
#wrapper #steps p{
border-left: 1px solid #EEEEEE;
font-size: 15px;
font-style: normal;
padding-left: 8px;
color: #000;
font-family: helvetica,arial,sans-serif;
}
#item_table table{
width:100%;
}
#item_table .head_row td{
border-bottom:1px solid #ccc;
font-weight:bold;
}
#item_table a{
color:#444;
cursor:pointer;
text-decoration:none;
}
#overlay {
display:none;
}
#footer{
color: #777777;
font-size: 13px;
margin-bottom: 20px;
text-align: center;
}