-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (117 loc) · 2.34 KB
/
style.css
File metadata and controls
118 lines (117 loc) · 2.34 KB
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
/* Stylesheet
*
*/
/* Robotobold custom font due to alias issues*/
@font-face {
font-family: 'RobotoBold';
font-style: normal;
font-weight: bold;
src: local(roboto.bold.ttf) format('ttf');
}
/* Specific style for FireFox*/
@-moz-document url-prefix() {
.note {
top: 652px;
}
}
body{
font:17px/1.4 'Roboto', Arial, Verdana, Helvetica, sans-serif;
}
.alert{
color: #990000;
background:#FFB3B3;
visibility:hidden;
height: 23px;
padding: 5px;
margin-bottom: 14px;
border-radius: 5px;
}
.req{
color: #C24646;
}
.main{
max-width: 700px;
width:100%;
padding:10px 0;
margin:0 auto;
position:relative;
}
label{
color: rgb(80,80,80);
font:17px/1.4 RobotoBold, Arial, Verdana, Helvetica, sans-serif;
font-weight:bold;
position: relative;
float: right;
right: 487px;
bottom: -2px;
}
select, input, textarea{
position:absolute;
left: 236px;
width: 442px;
padding: 0.4em 0.6em;
border-radius: 4px;
border-style: solid;
border-color: #CCCCCC;
border-width: 1px;
}
.textarea{
height:70px;
}
.note{
font: 13px/1.4 Roboto, Arial, Verdana, Helvetica, sans-serif;
font-weight:normal;
position:absolute;
left: 237px;
float: none;
right: 0;
bottom: 0;
}
/*Help icon*/
.help:before
{
content: '?';
display: inline-block;
font-family: sans-serif;
font-weight: bold;
text-align: center;
width: 1.8ex;
height: 1.8ex;
font-size: 1.4ex;
line-height: 2.2ex;
border-radius: 1.2ex;
margin-right: 4px;
padding: 1px;
color: #3183BA;
background: white;
border: 1px solid #3183BA;
}
/*Save button*/
input[type=submit]{
margin-top: 53px;
width: 63px;
box-shadow: none;
background-color: #4d90fe;
background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed);
background-image: -moz-linear-gradient(top,#4d90fe,#4787ed);
background-image: -ms-linear-gradient(top,#4d90fe,#4787ed);
background-image: -o-linear-gradient(top,#4d90fe,#4787ed);
background-image: linear-gradient(top,#4d90fe,#4787ed);
border: 1px solid #3079ed;
color: #fff;
border-radius: 2px;
cursor: default;
font-size: 12px;
font-weight: bold;
text-align: center;
white-space: nowrap;
margin-right: 16px;
height: 27px;
line-height: 18px;
min-width: 54px;
outline: 0px;
padding: 0 8px;
}
input[type=submit]:disabled{
opacity: 0.5;
}