-
Notifications
You must be signed in to change notification settings - Fork 65
/
style.css
122 lines (116 loc) · 2.88 KB
/
style.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
*{font-family: sans-serif}
/* #### bootstrap Form #### */
.bootstrap-frm {
width: 700px;
margin-right: auto;
/*margin-left: auto;*/
background: #FFF;
/*padding: 20px 30px 20px 30px;*/
font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #888;
text-shadow: 1px 1px 1px #FFF;
border:1px solid #DDD;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
}
.bootstrap-padded{
padding: 20px 30px 20px 30px;
}
.bootstrap-frm h1 {
font: 25px "Helvetica Neue", Helvetica, Arial, sans-serif;
padding: 0px 0px 10px 40px;
display: block;
border-bottom: 1px solid #DADADA;
margin: -10px -30px 15px -30px;
color: #555;
}
.bootstrap-frm h1>span {
display: block;
font-size: 11px;
}
.bootstrap-frm label {
display: block;
margin: 0px 0px 5px;
}
.bootstrap-frm b {
float: left;
width: 80px;
text-align: right;
padding-right: 10px;
margin-top: 10px;
color: #333;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
}
.bootstrap-frm label>span {
float: left;
width: 80px;
text-align: right;
padding-right: 10px;
margin-top: 10px;
color: #333;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
}
.bootstrap-frm input[type="text"], .bootstrap-frm input[type="email"], .bootstrap-frm textarea, .bootstrap-frm select{
border: 1px solid #CCC;
color: #888;
height: 18px;
margin-bottom: 0px;
margin-right: 6px;
margin-top: 2px;
outline: 0 none;
padding: 6px 12px;
width: 30%;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
font: normal 14px/14px "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.bootstrap-frm select {
/*content: "\2193";*/
/*background: #FFF url('down-arrow.png') no-repeat right;*/
appearance:none;
-webkit-appearance:none;
-moz-appearance: none;
text-indent: 0.01px;
text-overflow: '';
width: 72%;
height: 30px;
}
.bootstrap-frm textarea{
height:100px;
}
.bootstrap-frm .button {
height: 100%;
width:40%;
font-size: 14px;
font-family: 14px, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
background: #FFF;
border: 1px solid #CCC;
padding: 10px 25px 10px 25px;
color: #333;
border-radius: 4px;
}
.bootstrap-frm .button:hover {
color: #333;
background-color: #EBEBEB;
border-color: #ADADAD;
}
.bootstrap-frm .ribbon {
position: relative;
padding:0px 0px 0px 0px;
float: right;
margin-top: 0px;
}
.bootstrap-frm .ribbon img {
position: absolute;
right: 0; top: 0; }
input[type=radio] {
display: inline;
}