Commit 68e02093ec9d843450d9b90daff3ddf21110253b
1 parent
58e5209e
Exists in
colab
and in
4 other branches
Extracted sign in CSS to a specific file
Showing
2 changed files
with
47 additions
and
53 deletions
Show diff stats
app/assets/stylesheets/boilerplate/main.css
... | ... | @@ -93,59 +93,6 @@ textarea { |
93 | 93 | Author's custom styles |
94 | 94 | ========================================================================== */ |
95 | 95 | |
96 | -.form-table { | |
97 | - margin: 0 !important; | |
98 | - background: #fff; | |
99 | - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); | |
100 | - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); | |
101 | -} | |
102 | - | |
103 | -.margin-left-none{ | |
104 | - margin-left: 0 !important; | |
105 | -} | |
106 | - | |
107 | -.field { | |
108 | -float: left; | |
109 | -width: 100%; | |
110 | -border-bottom: 1px solid #f2f2f2; | |
111 | -border-top: 1px solid #e3e3e3; | |
112 | -overflow: hidden; | |
113 | -display: inline-flex; | |
114 | -} | |
115 | - | |
116 | -.user-details { | |
117 | -position: relative; | |
118 | -float: left; | |
119 | -width: 653px; | |
120 | -padding: 20px; | |
121 | -} | |
122 | - | |
123 | -.help { | |
124 | -float: left; | |
125 | -width: 307px; | |
126 | -margin: 0 0 -20000px 0; | |
127 | -padding: 20px 20px 20000px 20px; | |
128 | -background: #f5f5f5; | |
129 | -border-left: 1px solid #e3e3e3; | |
130 | -border-right: 1px solid #e3e3e3; | |
131 | -} | |
132 | - | |
133 | -.label2 { | |
134 | -width: 95% !important; | |
135 | -height: 50px; | |
136 | -margin: 0; | |
137 | -padding: 10px; | |
138 | -color: #555; | |
139 | -font-size: 15px; | |
140 | -background: #f9f9f9; | |
141 | -border: 1px solid #dfdfdf; | |
142 | -} | |
143 | - | |
144 | - | |
145 | - | |
146 | - | |
147 | - | |
148 | - | |
149 | 96 | /* ========================================================================== |
150 | 97 | Helper classes |
151 | 98 | ========================================================================== */ | ... | ... |
... | ... | @@ -0,0 +1,47 @@ |
1 | +.form-table { | |
2 | + margin: 0 !important; | |
3 | + background: #fff; | |
4 | + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); | |
5 | + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); | |
6 | +} | |
7 | + | |
8 | +.margin-left-none{ | |
9 | + margin-left: 0 !important; | |
10 | +} | |
11 | + | |
12 | +.field { | |
13 | + float: left; | |
14 | + width: 100%; | |
15 | + border-bottom: 1px solid #f2f2f2; | |
16 | + border-top: 1px solid #e3e3e3; | |
17 | + overflow: hidden; | |
18 | + display: inline-flex; | |
19 | +} | |
20 | + | |
21 | +.user-details { | |
22 | + position: relative; | |
23 | + float: left; | |
24 | + width: 653px; | |
25 | + padding: 20px; | |
26 | +} | |
27 | + | |
28 | +.help { | |
29 | + float: left; | |
30 | + width: 307px; | |
31 | + margin: 0 0 -20000px 0; | |
32 | + padding: 20px 20px 20000px 20px; | |
33 | + background: #f5f5f5; | |
34 | + border-left: 1px solid #e3e3e3; | |
35 | + border-right: 1px solid #e3e3e3; | |
36 | +} | |
37 | + | |
38 | +.label2 { | |
39 | + width: 95% !important; | |
40 | + height: 50px; | |
41 | + margin: 0; | |
42 | + padding: 10px; | |
43 | + color: #555; | |
44 | + font-size: 15px; | |
45 | + background: #f9f9f9; | |
46 | + border: 1px solid #dfdfdf; | |
47 | +} | |
0 | 48 | \ No newline at end of file | ... | ... |