seiro 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/_sass/seiro.css +767 -0
  3. data/assets/main.css +767 -0
  4. metadata +4 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e512890efd2f133533078ecbcb43a6aef0e3b8fd
4
- data.tar.gz: 0d997187347d4437787a071524604c0e40625557
3
+ metadata.gz: 6b038b818b68fb51c2a9b78807897a639763ad27
4
+ data.tar.gz: 6ed8558f75677cac85f8f5ef5b775a7ccd92aa8b
5
5
  SHA512:
6
- metadata.gz: b9322b5f1546d603d075f6e91aa91d7e3814afa180aff5f7afe9b4f5b03f787234382aca13c62470abb67f453862e2de140de0e1760d8d4c6c2faf901ada2ef9
7
- data.tar.gz: 314194df60f6dc27f4df14e130f964340dc64cfc1c222bfcdaa85913a69d81772192acbbbfa4be3033651513f598fa373918a4d0fa4e218eb955da8959fb05df
6
+ metadata.gz: a86459c51f5aadce8395a63a9b9aa0ecc17724740fca244604582880a33b17012b1f45e03f7db1b9485e1eb127dea4ad1b176c9204a185575e8b64b113c35bf5
7
+ data.tar.gz: 32f08b0d3f8e15a524941850ad93c32cdf30906b3b87a05fa9614516ef511f81735594f6c49e9127b373d7cad834ea63bf58e46ec1bc689d986d62041519453a
@@ -0,0 +1,767 @@
1
+ article {
2
+ margin-bottom: 10px !important;
3
+ }
4
+
5
+ h1, h2, h3, h4, h5, h6 {
6
+ padding: 0;
7
+ margin: 0;
8
+ }
9
+
10
+ html, body, h1, h2, h3, h4, h5, h6, a, button, li, ul {
11
+ font-family: 'Noto Sans';
12
+ }
13
+
14
+ h1 {
15
+ font-size: 3.5rem;
16
+ padding: 0;
17
+ }
18
+
19
+ h2 {
20
+ font-size: 3rem;
21
+ padding: 0;
22
+ }
23
+
24
+ h3 {
25
+ font-size: 2.5rem;
26
+ padding: 0;
27
+ }
28
+
29
+ h4 {
30
+ font-size: 2rem;
31
+ padding: 0;
32
+ }
33
+
34
+ h5 {
35
+ font-size: 1.5rem;
36
+ padding: 0;
37
+ }
38
+
39
+ h6 {
40
+ font-size: 1rem;
41
+ padding: 0;
42
+ }
43
+
44
+ .text-is-centered {
45
+ text-align: center !important;
46
+ }
47
+
48
+ .text-is-right {
49
+ text-align: right !important;
50
+ }
51
+
52
+ .text-is-left {
53
+ text-align: left !important;
54
+ }
55
+
56
+ .text-is-white {
57
+ color: #ffffff !important;
58
+ }
59
+
60
+ .text-is-grey {
61
+ color: #c3c3c3 !important;
62
+ }
63
+
64
+ .size-is-1 {
65
+ font-size: 3.5rem !important;
66
+ }
67
+
68
+ .size-is-2 {
69
+ font-size: 3rem !important;
70
+ }
71
+
72
+ .size-is-3 {
73
+ font-size: 2.5rem !important;
74
+ }
75
+
76
+ .size-is-4 {
77
+ font-size: 2rem !important;
78
+ }
79
+
80
+ .size-is-5 {
81
+ font-size: 1.5rem !important;
82
+ }
83
+
84
+ .size-is-6 {
85
+ font-size: 1rem !important;
86
+ }
87
+
88
+ .size-is-7 {
89
+ font-size: 0.75rem !important;
90
+ }
91
+
92
+ .s-subtitle {
93
+ font-size: 1rem;
94
+ font-weight: 300;
95
+ }
96
+
97
+ .s-title {
98
+ font-size: 2rem;
99
+ font-weight: 600;
100
+ }
101
+
102
+ html, body {
103
+ margin: 0 !important;
104
+ }
105
+
106
+ hr {
107
+ width: 55vh;
108
+ margin: 0 auto;
109
+ border: 1px solid #e1e1e1;
110
+ }
111
+
112
+ .s-primary {
113
+ background-color: #1dbce0 !important;
114
+ color: #ffffff !important;
115
+ }
116
+
117
+ .s-info {
118
+ background-color: #2980b9 !important;
119
+ color: #ffffff !important;
120
+ }
121
+
122
+ .s-success {
123
+ background-color: #2ecc71 !important;
124
+ color: #ffffff !important;
125
+ }
126
+
127
+ .s-warning {
128
+ background-color: #f1c40f !important;
129
+ color: #ffffff !important;
130
+ }
131
+
132
+ .s-danger {
133
+ background-color: #cd2029 !important;
134
+ color: #ffffff !important;
135
+ }
136
+
137
+ .s-default {
138
+ background-color: #e1e1e1 !important;
139
+ color: #212529;
140
+ }
141
+
142
+ .s-light {
143
+ background-color: #ecf0f1 !important;
144
+ }
145
+
146
+ .s-grey {
147
+ background-color: #bdc3c7 !important;
148
+ color: #ffffff !important;
149
+ }
150
+
151
+ .s-purple {
152
+ background-color: #9b59b6 !important;
153
+ color: #ffffff !important;
154
+ }
155
+
156
+ .s-orange {
157
+ background-color: #e67e22 !important;
158
+ color: #ffffff !important;
159
+ }
160
+
161
+ .s-black {
162
+ background-color: #212529 !important;
163
+ color: #ffffff !important;
164
+ }
165
+
166
+ .container {
167
+ max-width: 1344px !important;
168
+ margin: 0 auto !important;
169
+ height: auto !important;
170
+ padding: 30px !important;
171
+ }
172
+
173
+ html, body, h1, h2, h3, h4, h5, h6, a, button, li, ul {
174
+ font-family: 'Noto Sans';
175
+ }
176
+
177
+ h1 {
178
+ font-size: 3.5rem;
179
+ padding: 0;
180
+ }
181
+
182
+ h2 {
183
+ font-size: 3rem;
184
+ padding: 0;
185
+ }
186
+
187
+ h3 {
188
+ font-size: 2.5rem;
189
+ padding: 0;
190
+ }
191
+
192
+ h4 {
193
+ font-size: 2rem;
194
+ padding: 0;
195
+ }
196
+
197
+ h5 {
198
+ font-size: 1.5rem;
199
+ padding: 0;
200
+ }
201
+
202
+ h6 {
203
+ font-size: 1rem;
204
+ padding: 0;
205
+ }
206
+
207
+ .text-is-centered {
208
+ text-align: center !important;
209
+ }
210
+
211
+ .text-is-right {
212
+ text-align: right !important;
213
+ }
214
+
215
+ .text-is-left {
216
+ text-align: left !important;
217
+ }
218
+
219
+ .text-is-white {
220
+ color: #ffffff !important;
221
+ }
222
+
223
+ .text-is-grey {
224
+ color: #c3c3c3 !important;
225
+ }
226
+
227
+ .size-is-1 {
228
+ font-size: 3.5rem !important;
229
+ }
230
+
231
+ .size-is-2 {
232
+ font-size: 3rem !important;
233
+ }
234
+
235
+ .size-is-3 {
236
+ font-size: 2.5rem !important;
237
+ }
238
+
239
+ .size-is-4 {
240
+ font-size: 2rem !important;
241
+ }
242
+
243
+ .size-is-5 {
244
+ font-size: 1.5rem !important;
245
+ }
246
+
247
+ .size-is-6 {
248
+ font-size: 1rem !important;
249
+ }
250
+
251
+ .size-is-7 {
252
+ font-size: 0.75rem !important;
253
+ }
254
+
255
+ .s-subtitle {
256
+ font-size: 1rem;
257
+ font-weight: 300;
258
+ }
259
+
260
+ .s-title {
261
+ font-size: 2rem;
262
+ font-weight: 600;
263
+ }
264
+
265
+ .s-gradient {
266
+ background: -webkit-linear-gradient(#21D4FD, #158ba5);
267
+ color: white;
268
+ }
269
+
270
+ .s-banner-container {
271
+ display: flex !important;
272
+ flex-direction: column;
273
+ justify-content: center !important;
274
+ width: 100% !important;
275
+ }
276
+
277
+ .s-banner {
278
+ background-color: #ffffff;
279
+ min-height: 15vh;
280
+ padding: 30px;
281
+ display: flex;
282
+ align-items: center;
283
+ }
284
+
285
+ .s-banner-medium {
286
+ background-color: #ffffff;
287
+ min-height: 30vh;
288
+ padding: 30px;
289
+ display: flex;
290
+ align-items: center;
291
+ }
292
+
293
+ .s-banner-large {
294
+ background-color: #ffffff;
295
+ min-height: 60vh;
296
+ padding: 30px;
297
+ display: flex;
298
+ align-items: center;
299
+ }
300
+
301
+ .s-banner-primary-large {
302
+ background-color: #1dbce0;
303
+ min-height: 60vh;
304
+ padding: 30px;
305
+ display: flex;
306
+ align-items: center;
307
+ color: #ffffff;
308
+ }
309
+
310
+ .s-banner-fullheight {
311
+ background-color: #ffffff;
312
+ min-height: 100vh;
313
+ display: flex;
314
+ align-items: center;
315
+ justify-content: center;
316
+ flex-direction: column;
317
+ padding: 30px;
318
+ }
319
+
320
+ .buttons {
321
+ display: flex !important;
322
+ flex-direction: row !important;
323
+ flex-wrap: wrap !important;
324
+ justify-content: left !important;
325
+ align-items: center !important;
326
+ }
327
+
328
+ .btn-small {
329
+ display: flex;
330
+ align-items: center !important;
331
+ justify-content: center !important;
332
+ min-width: 60px !important;
333
+ min-height: 30px !important;
334
+ border-radius: 3px !important;
335
+ padding: 5px !important;
336
+ }
337
+
338
+ .btn-large {
339
+ display: flex;
340
+ align-items: center !important;
341
+ justify-content: center !important;
342
+ min-width: 100px !important;
343
+ min-height: 60px !important;
344
+ border-radius: 3px !important;
345
+ padding: 5px !important;
346
+ }
347
+
348
+ .button {
349
+ display: flex;
350
+ align-items: center !important;
351
+ justify-content: center !important;
352
+ min-width: 80px;
353
+ min-height: 40px;
354
+ border-radius: 3px !important;
355
+ border: none !important;
356
+ padding: 5px !important;
357
+ margin: 2px !important;
358
+ color: #212529;
359
+ background-color: #ffffff;
360
+ -webkit-transition: 0.3s ease-in-out !important;
361
+ transition: 0.3s ease-in-out !important;
362
+ }
363
+
364
+ .button.s-default:hover {
365
+ background-color: #d4d4d4 !important;
366
+ }
367
+
368
+ .button.s-primary:hover {
369
+ background-color: #1aa9c9 !important;
370
+ }
371
+
372
+ .button.s-danger:hover {
373
+ background-color: #b71d25 !important;
374
+ }
375
+
376
+ .button.s-warning:hover {
377
+ background-color: #dab10d !important;
378
+ }
379
+
380
+ .button.s-success:hover {
381
+ background-color: #29b765 !important;
382
+ }
383
+
384
+ .button.s-info:hover {
385
+ background-color: #2472a4 !important;
386
+ }
387
+
388
+ .button.s-purple:hover {
389
+ background-color: #8f4bab !important;
390
+ }
391
+
392
+ .outlined-button {
393
+ display: flex;
394
+ align-items: center !important;
395
+ justify-content: center !important;
396
+ min-width: 80px;
397
+ min-height: 40px;
398
+ border-radius: 3px !important;
399
+ border: 1px solid #e1e1e1 !important;
400
+ padding: 5px !important;
401
+ margin: 2px !important;
402
+ background-color: transparent !important;
403
+ color: #e1e1e1 !important;
404
+ -webkit-transition: 0.3s ease-in-out !important;
405
+ transition: 0.3s ease-in-out !important;
406
+ }
407
+
408
+ .outlined-button:hover {
409
+ background-color: #e1e1e1 !important;
410
+ color: #ffffff !important;
411
+ }
412
+
413
+ .outlined-button-white {
414
+ min-width: 80px;
415
+ max-width: 130px !important;
416
+ min-height: 40px;
417
+ border-radius: 3px !important;
418
+ border: 1px solid #ffffff !important;
419
+ padding: 5px !important;
420
+ margin: 2px !important;
421
+ background-color: transparent !important;
422
+ color: #ffffff !important;
423
+ -webkit-transition: 0.3s ease-in-out !important;
424
+ transition: 0.3s ease-in-out !important;
425
+ }
426
+
427
+ .outlined-button-white:hover {
428
+ background-color: #ffffff !important;
429
+ color: #21D4FD !important;
430
+ }
431
+
432
+ .outlined-button-primary {
433
+ display: flex;
434
+ align-items: center !important;
435
+ justify-content: center !important;
436
+ min-width: 80px;
437
+ min-height: 40px;
438
+ border-radius: 3px !important;
439
+ border: 1px solid #1dbce0 !important;
440
+ padding: 5px !important;
441
+ margin: 2px !important;
442
+ background-color: transparent !important;
443
+ color: #1dbce0 !important;
444
+ -webkit-transition: 0.3s ease-in-out !important;
445
+ transition: 0.3s ease-in-out !important;
446
+ }
447
+
448
+ .outlined-button-primary:hover {
449
+ background-color: #1dbce0 !important;
450
+ color: #ffffff !important;
451
+ }
452
+
453
+ .outlined-button-danger {
454
+ display: flex;
455
+ align-items: center !important;
456
+ justify-content: center !important;
457
+ min-width: 80px;
458
+ min-height: 40px;
459
+ border-radius: 3px !important;
460
+ border: 1px solid #cd2029 !important;
461
+ padding: 5px !important;
462
+ margin: 2px !important;
463
+ background-color: transparent !important;
464
+ color: #cd2029 !important;
465
+ -webkit-transition: 0.3s ease-in-out !important;
466
+ transition: 0.3s ease-in-out !important;
467
+ }
468
+
469
+ .outlined-button-danger:hover {
470
+ background-color: #cd2029 !important;
471
+ color: #ffffff !important;
472
+ }
473
+
474
+ .outlined-button-warning {
475
+ display: flex;
476
+ align-items: center !important;
477
+ justify-content: center !important;
478
+ min-width: 80px;
479
+ min-height: 40px;
480
+ border-radius: 3px !important;
481
+ border: 1px solid #f1c40f !important;
482
+ padding: 5px !important;
483
+ margin: 2px !important;
484
+ background-color: transparent !important;
485
+ color: #f1c40f !important;
486
+ -webkit-transition: 0.3s ease-in-out !important;
487
+ transition: 0.3s ease-in-out !important;
488
+ }
489
+
490
+ .outlined-button-warning:hover {
491
+ background-color: #f1c40f !important;
492
+ color: #ffffff !important;
493
+ }
494
+
495
+ .outlined-button-success {
496
+ display: flex;
497
+ align-items: center !important;
498
+ justify-content: center !important;
499
+ min-width: 80px;
500
+ min-height: 40px;
501
+ border-radius: 3px !important;
502
+ border: 1px solid #2ecc71 !important;
503
+ padding: 5px !important;
504
+ margin: 2px !important;
505
+ background-color: transparent !important;
506
+ color: #2ecc71 !important;
507
+ -webkit-transition: 0.3s ease-in-out !important;
508
+ transition: 0.3s ease-in-out !important;
509
+ }
510
+
511
+ .outlined-button-success:hover {
512
+ background-color: #2ecc71 !important;
513
+ color: #ffffff !important;
514
+ }
515
+
516
+ .outlined-button-info {
517
+ display: flex;
518
+ align-items: center !important;
519
+ justify-content: center !important;
520
+ min-width: 80px;
521
+ min-height: 40px;
522
+ border-radius: 3px !important;
523
+ border: 1px solid #2980b9 !important;
524
+ padding: 5px !important;
525
+ margin: 2px !important;
526
+ background-color: transparent !important;
527
+ color: #2980b9 !important;
528
+ -webkit-transition: 0.3s ease-in-out !important;
529
+ transition: 0.3s ease-in-out !important;
530
+ }
531
+
532
+ .outlined-button-info:hover {
533
+ background-color: #2980b9 !important;
534
+ color: #ffffff !important;
535
+ }
536
+
537
+ .outlined-button-purple {
538
+ display: flex;
539
+ align-items: center !important;
540
+ justify-content: center !important;
541
+ min-width: 80px;
542
+ min-height: 40px;
543
+ border-radius: 3px !important;
544
+ border: 1px solid #9b59b6 !important;
545
+ padding: 5px !important;
546
+ margin: 2px !important;
547
+ background-color: transparent !important;
548
+ color: #9b59b6 !important;
549
+ -webkit-transition: 0.3s ease-in-out !important;
550
+ transition: 0.3s ease-in-out !important;
551
+ }
552
+
553
+ .outlined-button-purple:hover {
554
+ background-color: #9b59b6 !important;
555
+ color: #ffffff !important;
556
+ }
557
+
558
+ .gallery {
559
+ display: flex !important;
560
+ flex-direction: row !important;
561
+ flex-wrap: wrap !important;
562
+ justify-content: center !important;
563
+ padding: 10px;
564
+ }
565
+
566
+ .photo {
567
+ border-radius: 3px;
568
+ width: 300px !important;
569
+ height: 250px !important;
570
+ margin: 0.6rem !important;
571
+ border-radius: 3px !important;
572
+ }
573
+
574
+ .photo1, .photo9 {
575
+ background: url("https://images.unsplash.com/photo-1504814532849-cff240bbc503?auto=format&fit=crop&w=1268&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
576
+ background-size: cover;
577
+ }
578
+
579
+ .photo2, .photo10 {
580
+ background: url("https://images.unsplash.com/photo-1463468217891-c11f48e6310a?auto=format&fit=crop&w=1267&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
581
+ background-size: cover;
582
+ }
583
+
584
+ .photo3, .photo11 {
585
+ background: url("https://images.unsplash.com/photo-1464646163800-8331cc18a357?auto=format&fit=crop&w=1346&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
586
+ background-size: cover;
587
+ }
588
+
589
+ .photo4, .photo12 {
590
+ background: url("https://images.unsplash.com/photo-1480099835147-7b8f6c6f8b98?auto=format&fit=crop&w=1288&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
591
+ background-size: cover;
592
+ }
593
+
594
+ .photo5, .photo13 {
595
+ background: url("https://images.unsplash.com/photo-1482531007909-192ac913980a?auto=format&fit=crop&w=1351&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
596
+ background-size: cover;
597
+ }
598
+
599
+ .photo6, .photo14 {
600
+ background: url("https://images.unsplash.com/photo-1454123253751-1fe2b9e0c10d?auto=format&fit=crop&w=1350&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
601
+ background-size: cover;
602
+ }
603
+
604
+ .photo7, .photo15 {
605
+ background: url("https://images.unsplash.com/photo-1500514966906-fe245eea9344?auto=format&fit=crop&w=1267&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
606
+ background-size: cover;
607
+ }
608
+
609
+ .photo8, .photo16 {
610
+ background: url("https://images.unsplash.com/photo-1483560732664-64c6d784340b?auto=format&fit=crop&w=1350&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
611
+ background-size: cover;
612
+ }
613
+
614
+ .s-card-grid {
615
+ display: flex;
616
+ flex-direction: row;
617
+ justify-content: center;
618
+ flex-wrap: wrap;
619
+ }
620
+
621
+ .s-card {
622
+ display: flex;
623
+ flex-direction: column;
624
+ max-width: 100%;
625
+ width: 48vh;
626
+ background-color: white;
627
+ box-shadow: 2px 2px 20px #bdc3c7;
628
+ border-radius: 3px;
629
+ padding: 0;
630
+ margin: 0.5rem;
631
+ -webkit-transition: 0.3s ease-in-out !important;
632
+ -webkit-transition-transition: 0.2s ease-in-out !important;
633
+ }
634
+
635
+ .s-blog-card {
636
+ display: flex;
637
+ flex-direction: column;
638
+ max-width: 100%;
639
+ width: 700px;
640
+ background-color: white;
641
+ border-radius: 1px;
642
+ padding: 0;
643
+ margin: 0.5rem;
644
+ -webkit-transition: 0.3s ease-in-out !important;
645
+ -webkit-transition-transition: 0.2s ease-in-out !important;
646
+ }
647
+
648
+ .s-card:hover {
649
+ box-shadow: 4px 4px 20px #c3c3c3;
650
+ }
651
+
652
+ .s-card-content {
653
+ padding: 20px;
654
+ }
655
+
656
+ img {
657
+ max-width: 100%;
658
+ width: 48vh;
659
+ height: 30vh;
660
+ border-radius: 3px 3px 0 0;
661
+ margin: 0;
662
+ }
663
+
664
+ .s-card-title {
665
+ font-family: 'Noto Sans';
666
+ font-size: 1.3rem !important;
667
+ margin: 0;
668
+ }
669
+
670
+ .s-card-text {
671
+ margin: 0;
672
+ font-family: 'Noto Sans';
673
+ font-size: 12px;
674
+ }
675
+
676
+ .s-profile-card {
677
+ width: 48vh;
678
+ min-height: 45vh;
679
+ display: flex;
680
+ flex-direction: column;
681
+ border-radius: 10px;
682
+ margin: 15px;
683
+ padding: 0;
684
+ box-shadow: 2px 2px 20px #bdc3c7;
685
+ -webkit-transition: 0.3s ease-in-out !important;
686
+ -webkit-transition-transition: 0.2s ease-in-out !important;
687
+ }
688
+
689
+ .s-profile-card:hover {
690
+ box-shadow: 4px 4px 20px #c3c3c3;
691
+ }
692
+
693
+ .s-profile-card-container {
694
+ display: flex;
695
+ justify-content: center;
696
+ width: 48vh;
697
+ flex-direction: column;
698
+ }
699
+
700
+ .s-profile-background {
701
+ width: 48vh;
702
+ min-height: 22vh;
703
+ background-size: cover;
704
+ border-radius: 10px 10px 0 0;
705
+ }
706
+
707
+ .s-profile-picture {
708
+ margin-top: -70px;
709
+ display: flex;
710
+ justify-content: center;
711
+ }
712
+
713
+ .s-profile-image {
714
+ width: 20vh;
715
+ height: 20vh;
716
+ border-radius: 100%;
717
+ background-color: white;
718
+ border: 3px solid white;
719
+ }
720
+
721
+ .s-profile-media {
722
+ background-color: white;
723
+ border-radius: 10px;
724
+ }
725
+
726
+ .s-profile-content {
727
+ display: flex;
728
+ flex-direction: column;
729
+ padding: 20px;
730
+ font-family: 'Montserrat';
731
+ justify-content: center;
732
+ text-align: center;
733
+ margin-top: -10px;
734
+ background-color: white;
735
+ z-index: -1;
736
+ border-radius: 0 0 10px 10px;
737
+ font-family: 'Montserrat';
738
+ }
739
+
740
+ .s-profile-title {
741
+ padding: 0;
742
+ margin: 0;
743
+ font-weight: 300;
744
+ font-size: 1.5rem;
745
+ }
746
+
747
+ .s-profile-text {
748
+ padding: 0;
749
+ font-size: 0.75rem;
750
+ margin: 0.5em;
751
+ }
752
+
753
+ .s-profile-links {
754
+ letter-spacing: 3px;
755
+ }
756
+
757
+ .fa-instagram {
758
+ color: #E44D55;
759
+ }
760
+
761
+ .fa-linkedin {
762
+ color: #0076B4;
763
+ }
764
+
765
+ .fa-twitter {
766
+ color: #1DA1F4;
767
+ }