git ssb

0+

dangerousbeans / project-entropy.com



Tree: 847c9f905f68514078714c6042b94acd2abecac0

Files: 847c9f905f68514078714c6042b94acd2abecac0 / app / assets / stylesheets / application.css.scss.erb

5473 bytesRaw
1/*
2 * This is a manifest file that'll be compiled into application.css, which will include all the files
3 * listed below.
4 *
5 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7 *
8 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9 * compiled file so the styles you add here take precedence over styles defined in any styles
10 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11 * file per style scope.
12 *
13 *= require fontawesome
14 *= require leaflet
15 *= require md_simple_editor
16 *= require devise_bootstrap_views
17 *= require_tree .
18 *= require_self
19 */
20
21
22.main-area-links
23{
24 .btn
25 {
26 margin: 0.1em;
27 }
28}
29
30@media (max-width: 768px)
31{
32 #mainNav
33 {
34 background-color: #000;
35 border: none;
36 color: white !important;
37
38 a
39 {
40 color: white !important;
41 }
42 }
43
44 .bottom-align-text
45 {
46 position: absolute;
47 bottom: 0;
48 right: 0;
49 }
50}
51
52@media (min-width: 769px)
53{
54 #mainNav
55 {
56 background-color: rgba(26, 45, 111, 0.6);
57 border: none;
58 }
59}
60
61
62#map-container
63{
64 min-height: 45em;
65 height: 100%;
66}
67
68.bigger
69{
70 font-size: 1.9em;
71 font-family: Roboto;
72 font-weight: bolder;
73}
74
75.section-icon
76{
77 max-height: 13em;
78}
79
80.alpha
81{
82 background-image: url(<%= image_url 'Boat-in-the-sea-network01.jpg' %>);
83 background-position: top left;
84}
85.beta
86{
87 background-image: url(<%= image_url 'projects/cnc_cutter.jpg' %>);
88 background-position: left;
89}
90.community
91{
92 background-image: url(<%= image_url 'entropy_from_above.jpg' %>);
93 background-position: left;
94 background-blend-mode: color-burn;
95}
96
97.map
98{
99 background-image: url(<%= image_url 'world_map_2.png' %>);
100 background-position: center;
101}
102
103.afloat
104{
105 background-image: url(<%= image_url 'sailing_bay_of_islands.jpg' %>);
106}
107
108
109.secondary
110{
111 // margin-top: 1em;
112 min-height: 88%;
113
114 h1
115 {
116 font-family: "Raleway";
117 font-weight: bolder;
118
119 }
120
121}
122
123
124.progress-container
125{
126 width:100%;
127 height:1.5em;
128 position:relative;
129 background-color:#f1f1f1
130}
131
132.progressbar
133{
134 background-color:#757575;
135 height:100%;
136 position:absolute;
137 line-height:inherit
138}
139
140.banner-stats
141{
142 position: absolute;
143 bottom: 1em;
144}
145.banner-left:after
146{
147 content: '';
148 position: absolute;
149 top: 0; left: 0;
150 width: 100%; height: 100%;
151 background: #000;
152 -webkit-transform-origin: 100% 0;
153 -ms-transform-origin: 100% 0;
154 transform-origin: 100% 0;
155 -webkit-transform: skew(-45deg);
156 -ms-transform: skew(-45deg);
157 transform: skew(-45deg);
158 z-index: -1;
159 background-color: rgba(18,18,81,0.5);
160}
161
162.right-space
163{
164 margin-right: 3.5em;
165}
166//
167// @media (min-width: 992px)
168// {
169// .status
170// {
171// position: absolute;
172// bottom: 0;
173// }
174// }
175
176
177.portfolio-box
178{
179 overflow: hidden;
180}
181
182.project-image
183{
184 width: 100%;
185}
186
187.status
188{
189 width: 100%;
190 color: white;
191
192 .stats-panel
193 {
194 min-height: 10em;
195 background-size: contain;
196 background-repeat: no-repeat;
197 // background-blend-mode: multiply;
198 background-position: 90% 50%;
199 }
200
201 .fund_stats
202 {
203 background-color: #0B3A72;
204 background-image: url(<%= image_url 'ethereum.png' %>);
205 }
206 .citizen_stats
207 {
208 background-color: #CF6551;
209 background-image: url(<%= image_url 'users.png' %>);
210 }
211 .action_stats
212 {
213 background-color: #3D6799;
214 background-image: url(<%= image_url 'idea.png' %>);
215 }
216 .project_status
217 {
218 background-color: #961A11;
219 background-image: url(<%= image_url 'lab.png' %>);
220 }
221}
222
223
224@media (min-width: 768px ) {
225 .row {
226 position: relative;
227 }
228
229 .bottom-align-text {
230 position: absolute;
231 bottom: 0;
232 right: 0;
233 }
234}
235
236.logo-tagline
237{
238 font-size: 1.6em;
239 font-family: 'Roboto', sans-serif;
240 font-weight: bold;
241 text-transform: uppercase;
242}
243
244.banner-logo-tagline
245{
246 margin-top: -3em;
247}
248
249.banner-left
250{
251 position: absolute;
252 left: 0;
253 bottom: 0;
254 padding: 1em;
255}
256
257.text-box
258{
259 background-color: rgba(26,45,111,0.5);
260 padding: 1.5em;
261}
262
263.text-box-red
264{
265 background-color: rgba(194,42,1,0.5);
266 padding: 1.5em;
267}
268
269.text-box-lightblue
270{
271 background-color: rgba(24,100,147,0.5);
272 padding: 1.5em;
273}
274
275.text-box-white
276{
277 background-color: rgba(255, 255, 255, 0.6);
278 padding: 1.5em;
279}
280
281.header-content
282{
283 min-height: 32em;
284}
285
286.profile_pic
287{
288 border-radius: 50px 50px 50px;
289}
290
291.crowdfund-panel
292{
293 color: black;
294
295 p
296 {
297 color: black !important;
298 text-align: left;
299 }
300
301 ul
302 {
303 text-align: left;
304 }
305
306 .backer-stat-icon
307 {
308 min-width: 1.0em;
309 text-align: centre;
310 }
311
312 .stats
313 {
314 display: inline-block;
315 text-align: left;
316 align: left;
317 list-style: none;
318 font-size: 3em;
319 .detail
320 {
321 font-size: 0.5em;
322 }
323 }
324}
325
326
327
328.main-lead-text
329{
330 padding: 0.2em;
331 font-family: "Raleway";
332 font-weight: 700;
333 text-transform: uppercase;
334}
335
336.main-logo
337{
338
339}
340
341.homepage
342{
343 background-image: url(<%= image_url 'cat_from_above.jpg' %>);
344 background-position: center;
345}
346
347.boat
348{
349 background-image: url(<%= image_url 'nemo-574.jpg' %>);
350 background-position: center;
351}
352
353.hackspace
354{
355 background-image: url(<%= image_url 'sails-3.jpg' %>);
356 background-position: center;
357}
358
359.citizens
360{
361 background-image: url(<%= image_url 'cat_from_above.jpg' %>);
362 background-position: center;
363}
364
365.logo_bitcoin
366{
367 /*font-size: 1.0em;*/
368}
369.logo_ring
370{
371 /*font-size: 3em;*/
372}
373

Built with git-ssb-web