updated product view css, added mobile view
[ryf-theme.git] / css / style.css
1 /**
2 * If using a CSS pre-processor, tell it to overwrite this file. If not, place
3 * your custom CSS modifications here.
4 */
5
6 body { margin: 0; min-width: 320px; }
7
8 a { transition: 0.3s; }
9
10 .navbar-default {
11 background: #000;
12 color: #FFF;
13 border: none;
14 border-radius: 0px;
15 box-sizing: content-box;
16 align-items: center;
17 margin-bottom: 100px;
18 min-height: 100px;
19 }
20
21 .navbar-header, #navbar-collapse {
22 max-width: 1150px;
23 padding: 0;
24 margin: 0 auto;
25 border: none;
26 overflow: hidden;
27 }
28
29 .navbar-default .navbar-toggle { display: none; }
30
31 .navbar-header {
32 position: absolute;
33 top: 5px;
34 }
35
36 .navbar-brand { display: none; }
37
38 #block-ryf-main-menu .navbar-nav { margin-left: 180px; }
39
40 .navbar-default .navbar-nav > .active > a,
41 .navbar-default .navbar-nav > .active > a:hover,
42 .navbar-default .navbar-nav > li > a {
43 color: #FFF;
44 background: #000;
45 border-bottom: 2px solid transparent;
46 padding-bottom: 10px;
47 margin-bottom: 5px;
48 }
49
50 .navbar-default .navbar-nav > .active > a,
51 .navbar-default .navbar-nav > .active > a:hover,
52 .navbar-default .navbar-nav > li > a:hover {
53 color: #edd400;
54 border-bottom: 2px solid #edd400;
55 padding-bottom: 5px;
56 margin-bottom: 10px;
57 }
58
59 .page-header {
60 border-bottom: 2px solid #000;
61 font-size: 2em;
62 }
63
64 .region-header .search-block-form {
65 width: 300px;
66 float: right;
67 }
68
69 @media screen and (min-width: 520px) and (max-width: 599px) {
70 .logo img { margin-left: 50px; }
71 #block-ryf-main-menu .navbar-nav { margin-left: 230px; }
72 }
73
74 @media screen and (min-width: 600px) and (max-width: 767px) {
75 .logo img { margin-left: 100px; }
76 #block-ryf-main-menu .navbar-nav { margin-left: 280px; }
77 }
78
79 @media screen and (max-width: 767px) {
80 .logo img { height: 150px; margin-top: 25px; }
81 .navbar-default { min-height: 230px; margin-bottom: 30px; }
82 #block-ryf-main-menu .navbar-nav { max-width: 130px; }
83 }
84
85 @media screen and (min-width: 768px) {
86 .navbar-nav { margin-top: 40px; }
87 }
88
89 /* Selectors */
90
91 @media screen and (min-width: 768px) {
92 .form-inline .form-item .select-wrapper {
93 display: block;
94 }
95 .form-inline .form-actions {
96 margin-top: 21px;
97 }
98 }
99
100 /* RYF List */
101
102 .ryf-list {
103 float: left;
104 margin: 0;
105 padding: 0.5em;
106 position:relative;
107 list-style: none;
108 }
109
110 .ryf-list article {
111 border: 1px solid #ececec;
112 border-radius: 5px;
113 padding: 1em;
114 box-shadow: 2px 2px 5px #ddd;
115 transition: 0.3s;
116 }
117
118 .ryf-list article:hover {
119 box-shadow: 0px 0px 5px #aaa;
120 }
121
122 .ryf-list .field--type-image {
123 width: 100%;
124 background: #fff;
125 border-radius: 10px;
126 display: flex;
127 justify-content: center;
128 }
129
130 .ryf-list img {
131 max-width: 150px;
132 min-height: 150px;
133 overflow: hidden;
134 }
135
136 .ryf-list img:hover {
137 border-radius: 0;
138 }
139
140 .ryf-list h2 {
141 text-align: left;
142 font-size: 1.5em;
143 font-weight: 500;
144 line-height: 1.2em;
145 margin: 0;
146 padding: 0;
147 padding-bottom: 1em;
148 }
149
150 .ryf-list a {
151 color: #118991;
152 text-decoration: none;
153 }
154
155 .ryf-list a:hover {
156 color: #000;
157 }
158
159 .ryf-list .node-readmore,
160 .ryf-list .tags,
161 .ryf-list .supplier {
162 width: 100%;
163 float: left;
164 font-size: 0.9em;
165 border-top: 1px solid #ccc4c4;
166 margin-top: 5px;
167 padding-top: 5px;
168 color: #afadad;
169 }
170
171 .ryf-list .node-readmore {
172 text-align: right;
173 }
174
175
176 /* Sidebars */
177
178
179 @media screen and (max-width: 767px) {
180 .path-products #block-views-block-categories-categories-block { display: none; }
181 }
182
183
184 /* Product */
185
186 @media screen and (min-width: 768px) and (max-width: 991px) {
187 .page-node-type-product .product {
188 width: 700px;
189 margin: 0 auto;
190 }
191 }
192
193 @media screen and (min-width: 992px) {
194 .page-node-type-product .product {
195 width: 800px;
196 margin: 0 auto;
197 }
198 }
199
200 @media screen and (max-width: 767px) {
201 .page-node-type-product .product {
202 max-width: 382px;
203 margin: 0 auto;
204 }
205
206 .page-node-type-product .product .field--name-field-image {
207 padding: 10px;
208
209 display: flex;
210 align-items: center;
211
212 border: 1px solid #888;
213 border-radius: 10px;
214 }
215
216 .page-node-type-product .product .field--name-field-extra-images {
217 margin: 10px auto 0px auto;
218 padding: 5px;
219
220 display: flex;
221 align-items: center;
222
223 border: 1px solid #888;
224 border-radius: 10px;
225 }
226
227 .page-node-type-product .product .field--name-field-extra-images .field--item {
228 display: inline-block;
229 margin: auto;
230 padding: 5px;
231 }
232
233 .page-node-type-product .product .field--name-body, .page-node-type-product .product .field--name-field-vendor-product-link, .page-node-type-product .product .field--name-field-certification-details, .page-node-type-product .product .field--name-field-certification-date, .page-node-type-product .product .field--name-field-source-code-links {
234 margin-bottom: 20px;
235 }
236
237 .page-node-type-product .product .field--name-field-categories, .page-node-type-product .product .field--name-field-vendor {
238 float: left;
239 margin: 10px 10px 20px 0px;
240 padding: 10px;
241 border: 1px solid #888;
242 border-radius: 10px;
243 }
244
245 .page-node-type-product .product .field--name-body {
246 clear: both;
247 }
248 }
249
250
251 @media screen and (min-width: 768px) {
252 .page-node-type-product .product .field--name-field-image {
253 width: 382px;
254 padding: 10px;
255
256 display: flex;
257 align-items: center;
258
259 float: left;
260
261 border: 1px solid #888;
262 border-radius: 10px;
263 }
264
265 .page-node-type-product .product .field--name-field-extra-images {
266 float: left;
267 clear: left;
268
269 width: 382px;
270 padding: 5px;
271 margin-top: 10px;
272
273 display: flex;
274 align-items: center;
275
276 border: 1px solid #888;
277 border-radius: 10px;
278 }
279
280 .page-node-type-product .product .field--name-field-extra-images .field--item {
281 display: inline-block;
282 margin: auto;
283 padding: 5px;
284 }
285
286 .page-node-type-product .product .field--name-body, .page-node-type-product .product .field--name-field-vendor-product-link, .page-node-type-product .product .field--name-field-certification-details, .page-node-type-product .product .field--name-field-certification-date, .page-node-type-product .product .field--name-field-source-code-links {
287 margin-left: 400px;
288 margin-bottom: 20px;
289 }
290
291 .page-node-type-product .product .field--name-field-categories {
292 float: left;
293 clear: left;
294 }
295
296 .page-node-type-product .product .field--name-field-vendor {
297 float: left;
298 }
299
300 .page-node-type-product .product .field--name-field-categories, .page-node-type-product .product .field--name-field-vendor {
301 margin: 10px 10px 20px 0px;
302 padding: 10px;
303 border: 1px solid #888;
304 border-radius: 10px;
305 }
306 }
307
308
309 /* Footer */
310
311 .footer {
312 background: #333;
313 color: #FFF;
314 }
315
316 /* full page width for footer */
317 .footer {
318 width: 100%;
319 }
320
321 .footer a { color: #edd400; }
322
323 .footer a:hover { color: #FFF; }
324
325 .footer h4 { font-weight: bold; }
326
327 .footer .copyright { font-size: 0.9em; text-align: center; width: 80%; margin-top: 1em; border-top: 1px solid #111; padding: 1em; }
328
329 #fsf-logo-footer { margin-bottom: 10px; }
330
331 @media print { #fsf-logo-footer { filter: invert(100%) } }
332