seiro 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_sass/components/card.css +154 -0
- data/_sass/components/gallery.css +55 -0
- data/_sass/elements/banners.css +54 -0
- data/_sass/elements/buttons.css +237 -0
- data/_sass/modifiers/defaults.css +162 -0
- data/_sass/modifiers/typography-helpers.css +91 -0
- data/_sass/variables/derived-variables.css +1 -0
- data/_sass/variables/element-variables.css +8 -0
- data/_sass/variables/initial-variables.css +1 -0
- data/assets/main.sass +1 -1
- metadata +10 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e512890efd2f133533078ecbcb43a6aef0e3b8fd
|
4
|
+
data.tar.gz: 0d997187347d4437787a071524604c0e40625557
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9322b5f1546d603d075f6e91aa91d7e3814afa180aff5f7afe9b4f5b03f787234382aca13c62470abb67f453862e2de140de0e1760d8d4c6c2faf901ada2ef9
|
7
|
+
data.tar.gz: 314194df60f6dc27f4df14e130f964340dc64cfc1c222bfcdaa85913a69d81772192acbbbfa4be3033651513f598fa373918a4d0fa4e218eb955da8959fb05df
|
@@ -0,0 +1,154 @@
|
|
1
|
+
.s-card-grid {
|
2
|
+
display: flex;
|
3
|
+
flex-direction: row;
|
4
|
+
justify-content: center;
|
5
|
+
flex-wrap: wrap;
|
6
|
+
}
|
7
|
+
|
8
|
+
.s-card {
|
9
|
+
display: flex;
|
10
|
+
flex-direction: column;
|
11
|
+
max-width: 100%;
|
12
|
+
width: 48vh;
|
13
|
+
background-color: white;
|
14
|
+
box-shadow: 2px 2px 20px #bdc3c7;
|
15
|
+
border-radius: 3px;
|
16
|
+
padding: 0;
|
17
|
+
margin: 0.5rem;
|
18
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
19
|
+
-webkit-transition-transition: 0.2s ease-in-out !important;
|
20
|
+
}
|
21
|
+
|
22
|
+
.s-blog-card {
|
23
|
+
display: flex;
|
24
|
+
flex-direction: column;
|
25
|
+
max-width: 100%;
|
26
|
+
width: 700px;
|
27
|
+
background-color: white;
|
28
|
+
border-radius: 1px;
|
29
|
+
padding: 0;
|
30
|
+
margin: 0.5rem;
|
31
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
32
|
+
-webkit-transition-transition: 0.2s ease-in-out !important;
|
33
|
+
}
|
34
|
+
|
35
|
+
.s-card:hover {
|
36
|
+
box-shadow: 4px 4px 20px #c3c3c3;
|
37
|
+
}
|
38
|
+
|
39
|
+
.s-card-content {
|
40
|
+
padding: 20px;
|
41
|
+
}
|
42
|
+
|
43
|
+
img {
|
44
|
+
max-width: 100%;
|
45
|
+
width: 48vh;
|
46
|
+
height: 30vh;
|
47
|
+
border-radius: 3px 3px 0 0;
|
48
|
+
margin: 0;
|
49
|
+
}
|
50
|
+
|
51
|
+
.s-card-title {
|
52
|
+
font-family: 'Noto Sans';
|
53
|
+
font-size: 1.3rem !important;
|
54
|
+
margin: 0;
|
55
|
+
}
|
56
|
+
|
57
|
+
.s-card-text {
|
58
|
+
margin: 0;
|
59
|
+
font-family: 'Noto Sans';
|
60
|
+
font-size: 12px;
|
61
|
+
}
|
62
|
+
|
63
|
+
.s-profile-card {
|
64
|
+
width: 48vh;
|
65
|
+
min-height: 45vh;
|
66
|
+
display: flex;
|
67
|
+
flex-direction: column;
|
68
|
+
border-radius: 10px;
|
69
|
+
margin: 15px;
|
70
|
+
padding: 0;
|
71
|
+
box-shadow: 2px 2px 20px #bdc3c7;
|
72
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
73
|
+
-webkit-transition-transition: 0.2s ease-in-out !important;
|
74
|
+
}
|
75
|
+
|
76
|
+
.s-profile-card:hover {
|
77
|
+
box-shadow: 4px 4px 20px #c3c3c3;
|
78
|
+
}
|
79
|
+
|
80
|
+
.s-profile-card-container {
|
81
|
+
display: flex;
|
82
|
+
justify-content: center;
|
83
|
+
width: 48vh;
|
84
|
+
flex-direction: column;
|
85
|
+
}
|
86
|
+
|
87
|
+
.s-profile-background {
|
88
|
+
width: 48vh;
|
89
|
+
min-height: 22vh;
|
90
|
+
background-size: cover;
|
91
|
+
border-radius: 10px 10px 0 0;
|
92
|
+
}
|
93
|
+
|
94
|
+
.s-profile-picture {
|
95
|
+
margin-top: -70px;
|
96
|
+
display: flex;
|
97
|
+
justify-content: center;
|
98
|
+
}
|
99
|
+
|
100
|
+
.s-profile-image {
|
101
|
+
width: 20vh;
|
102
|
+
height: 20vh;
|
103
|
+
border-radius: 100%;
|
104
|
+
background-color: white;
|
105
|
+
border: 3px solid white;
|
106
|
+
}
|
107
|
+
|
108
|
+
.s-profile-media {
|
109
|
+
background-color: white;
|
110
|
+
border-radius: 10px;
|
111
|
+
}
|
112
|
+
|
113
|
+
.s-profile-content {
|
114
|
+
display: flex;
|
115
|
+
flex-direction: column;
|
116
|
+
padding: 20px;
|
117
|
+
font-family: 'Montserrat';
|
118
|
+
justify-content: center;
|
119
|
+
text-align: center;
|
120
|
+
margin-top: -10px;
|
121
|
+
background-color: white;
|
122
|
+
z-index: -1;
|
123
|
+
border-radius: 0 0 10px 10px;
|
124
|
+
font-family: 'Montserrat';
|
125
|
+
}
|
126
|
+
|
127
|
+
.s-profile-title {
|
128
|
+
padding: 0;
|
129
|
+
margin: 0;
|
130
|
+
font-weight: 300;
|
131
|
+
font-size: 1.5rem;
|
132
|
+
}
|
133
|
+
|
134
|
+
.s-profile-text {
|
135
|
+
padding: 0;
|
136
|
+
font-size: 0.75rem;
|
137
|
+
margin: 0.5em;
|
138
|
+
}
|
139
|
+
|
140
|
+
.s-profile-links {
|
141
|
+
letter-spacing: 3px;
|
142
|
+
}
|
143
|
+
|
144
|
+
.fa-instagram {
|
145
|
+
color: #E44D55;
|
146
|
+
}
|
147
|
+
|
148
|
+
.fa-linkedin {
|
149
|
+
color: #0076B4;
|
150
|
+
}
|
151
|
+
|
152
|
+
.fa-twitter {
|
153
|
+
color: #1DA1F4;
|
154
|
+
}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
.gallery {
|
2
|
+
display: flex !important;
|
3
|
+
flex-direction: row !important;
|
4
|
+
flex-wrap: wrap !important;
|
5
|
+
justify-content: center !important;
|
6
|
+
padding: 10px;
|
7
|
+
}
|
8
|
+
|
9
|
+
.photo {
|
10
|
+
border-radius: 3px;
|
11
|
+
width: 300px !important;
|
12
|
+
height: 250px !important;
|
13
|
+
margin: 0.6rem !important;
|
14
|
+
border-radius: 3px !important;
|
15
|
+
}
|
16
|
+
|
17
|
+
.photo1, .photo9 {
|
18
|
+
background: url("https://images.unsplash.com/photo-1504814532849-cff240bbc503?auto=format&fit=crop&w=1268&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
|
19
|
+
background-size: cover;
|
20
|
+
}
|
21
|
+
|
22
|
+
.photo2, .photo10 {
|
23
|
+
background: url("https://images.unsplash.com/photo-1463468217891-c11f48e6310a?auto=format&fit=crop&w=1267&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
|
24
|
+
background-size: cover;
|
25
|
+
}
|
26
|
+
|
27
|
+
.photo3, .photo11 {
|
28
|
+
background: url("https://images.unsplash.com/photo-1464646163800-8331cc18a357?auto=format&fit=crop&w=1346&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
|
29
|
+
background-size: cover;
|
30
|
+
}
|
31
|
+
|
32
|
+
.photo4, .photo12 {
|
33
|
+
background: url("https://images.unsplash.com/photo-1480099835147-7b8f6c6f8b98?auto=format&fit=crop&w=1288&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
|
34
|
+
background-size: cover;
|
35
|
+
}
|
36
|
+
|
37
|
+
.photo5, .photo13 {
|
38
|
+
background: url("https://images.unsplash.com/photo-1482531007909-192ac913980a?auto=format&fit=crop&w=1351&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
|
39
|
+
background-size: cover;
|
40
|
+
}
|
41
|
+
|
42
|
+
.photo6, .photo14 {
|
43
|
+
background: url("https://images.unsplash.com/photo-1454123253751-1fe2b9e0c10d?auto=format&fit=crop&w=1350&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
|
44
|
+
background-size: cover;
|
45
|
+
}
|
46
|
+
|
47
|
+
.photo7, .photo15 {
|
48
|
+
background: url("https://images.unsplash.com/photo-1500514966906-fe245eea9344?auto=format&fit=crop&w=1267&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
|
49
|
+
background-size: cover;
|
50
|
+
}
|
51
|
+
|
52
|
+
.photo8, .photo16 {
|
53
|
+
background: url("https://images.unsplash.com/photo-1483560732664-64c6d784340b?auto=format&fit=crop&w=1350&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat;
|
54
|
+
background-size: cover;
|
55
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
.s-gradient {
|
2
|
+
background: -webkit-linear-gradient(#21D4FD, #158ba5);
|
3
|
+
color: white;
|
4
|
+
}
|
5
|
+
|
6
|
+
.s-banner-container {
|
7
|
+
display: flex !important;
|
8
|
+
flex-direction: column;
|
9
|
+
justify-content: center !important;
|
10
|
+
width: 100% !important;
|
11
|
+
}
|
12
|
+
|
13
|
+
.s-banner {
|
14
|
+
background-color: #ffffff;
|
15
|
+
min-height: 15vh;
|
16
|
+
padding: 30px;
|
17
|
+
display: flex;
|
18
|
+
align-items: center;
|
19
|
+
}
|
20
|
+
|
21
|
+
.s-banner-medium {
|
22
|
+
background-color: #ffffff;
|
23
|
+
min-height: 30vh;
|
24
|
+
padding: 30px;
|
25
|
+
display: flex;
|
26
|
+
align-items: center;
|
27
|
+
}
|
28
|
+
|
29
|
+
.s-banner-large {
|
30
|
+
background-color: #ffffff;
|
31
|
+
min-height: 60vh;
|
32
|
+
padding: 30px;
|
33
|
+
display: flex;
|
34
|
+
align-items: center;
|
35
|
+
}
|
36
|
+
|
37
|
+
.s-banner-primary-large {
|
38
|
+
background-color: #1dbce0;
|
39
|
+
min-height: 60vh;
|
40
|
+
padding: 30px;
|
41
|
+
display: flex;
|
42
|
+
align-items: center;
|
43
|
+
color: #ffffff;
|
44
|
+
}
|
45
|
+
|
46
|
+
.s-banner-fullheight {
|
47
|
+
background-color: #ffffff;
|
48
|
+
min-height: 100vh;
|
49
|
+
display: flex;
|
50
|
+
align-items: center;
|
51
|
+
justify-content: center;
|
52
|
+
flex-direction: column;
|
53
|
+
padding: 30px;
|
54
|
+
}
|
@@ -0,0 +1,237 @@
|
|
1
|
+
.buttons {
|
2
|
+
display: flex !important;
|
3
|
+
flex-direction: row !important;
|
4
|
+
flex-wrap: wrap !important;
|
5
|
+
justify-content: left !important;
|
6
|
+
align-items: center !important;
|
7
|
+
}
|
8
|
+
|
9
|
+
.btn-small {
|
10
|
+
display: flex;
|
11
|
+
align-items: center !important;
|
12
|
+
justify-content: center !important;
|
13
|
+
min-width: 60px !important;
|
14
|
+
min-height: 30px !important;
|
15
|
+
border-radius: 3px !important;
|
16
|
+
padding: 5px !important;
|
17
|
+
}
|
18
|
+
|
19
|
+
.btn-large {
|
20
|
+
display: flex;
|
21
|
+
align-items: center !important;
|
22
|
+
justify-content: center !important;
|
23
|
+
min-width: 100px !important;
|
24
|
+
min-height: 60px !important;
|
25
|
+
border-radius: 3px !important;
|
26
|
+
padding: 5px !important;
|
27
|
+
}
|
28
|
+
|
29
|
+
.button {
|
30
|
+
display: flex;
|
31
|
+
align-items: center !important;
|
32
|
+
justify-content: center !important;
|
33
|
+
min-width: 80px;
|
34
|
+
min-height: 40px;
|
35
|
+
border-radius: 3px !important;
|
36
|
+
border: none !important;
|
37
|
+
padding: 5px !important;
|
38
|
+
margin: 2px !important;
|
39
|
+
color: #212529;
|
40
|
+
background-color: #ffffff;
|
41
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
42
|
+
transition: 0.3s ease-in-out !important;
|
43
|
+
}
|
44
|
+
|
45
|
+
.button.s-default:hover {
|
46
|
+
background-color: #d4d4d4 !important;
|
47
|
+
}
|
48
|
+
|
49
|
+
.button.s-primary:hover {
|
50
|
+
background-color: #1aa9c9 !important;
|
51
|
+
}
|
52
|
+
|
53
|
+
.button.s-danger:hover {
|
54
|
+
background-color: #b71d25 !important;
|
55
|
+
}
|
56
|
+
|
57
|
+
.button.s-warning:hover {
|
58
|
+
background-color: #dab10d !important;
|
59
|
+
}
|
60
|
+
|
61
|
+
.button.s-success:hover {
|
62
|
+
background-color: #29b765 !important;
|
63
|
+
}
|
64
|
+
|
65
|
+
.button.s-info:hover {
|
66
|
+
background-color: #2472a4 !important;
|
67
|
+
}
|
68
|
+
|
69
|
+
.button.s-purple:hover {
|
70
|
+
background-color: #8f4bab !important;
|
71
|
+
}
|
72
|
+
|
73
|
+
.outlined-button {
|
74
|
+
display: flex;
|
75
|
+
align-items: center !important;
|
76
|
+
justify-content: center !important;
|
77
|
+
min-width: 80px;
|
78
|
+
min-height: 40px;
|
79
|
+
border-radius: 3px !important;
|
80
|
+
border: 1px solid #e1e1e1 !important;
|
81
|
+
padding: 5px !important;
|
82
|
+
margin: 2px !important;
|
83
|
+
background-color: transparent !important;
|
84
|
+
color: #e1e1e1 !important;
|
85
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
86
|
+
transition: 0.3s ease-in-out !important;
|
87
|
+
}
|
88
|
+
|
89
|
+
.outlined-button:hover {
|
90
|
+
background-color: #e1e1e1 !important;
|
91
|
+
color: #ffffff !important;
|
92
|
+
}
|
93
|
+
|
94
|
+
.outlined-button-white {
|
95
|
+
min-width: 80px;
|
96
|
+
max-width: 130px !important;
|
97
|
+
min-height: 40px;
|
98
|
+
border-radius: 3px !important;
|
99
|
+
border: 1px solid #ffffff !important;
|
100
|
+
padding: 5px !important;
|
101
|
+
margin: 2px !important;
|
102
|
+
background-color: transparent !important;
|
103
|
+
color: #ffffff !important;
|
104
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
105
|
+
transition: 0.3s ease-in-out !important;
|
106
|
+
}
|
107
|
+
|
108
|
+
.outlined-button-white:hover {
|
109
|
+
background-color: #ffffff !important;
|
110
|
+
color: #21D4FD !important;
|
111
|
+
}
|
112
|
+
|
113
|
+
.outlined-button-primary {
|
114
|
+
display: flex;
|
115
|
+
align-items: center !important;
|
116
|
+
justify-content: center !important;
|
117
|
+
min-width: 80px;
|
118
|
+
min-height: 40px;
|
119
|
+
border-radius: 3px !important;
|
120
|
+
border: 1px solid #1dbce0 !important;
|
121
|
+
padding: 5px !important;
|
122
|
+
margin: 2px !important;
|
123
|
+
background-color: transparent !important;
|
124
|
+
color: #1dbce0 !important;
|
125
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
126
|
+
transition: 0.3s ease-in-out !important;
|
127
|
+
}
|
128
|
+
|
129
|
+
.outlined-button-primary:hover {
|
130
|
+
background-color: #1dbce0 !important;
|
131
|
+
color: #ffffff !important;
|
132
|
+
}
|
133
|
+
|
134
|
+
.outlined-button-danger {
|
135
|
+
display: flex;
|
136
|
+
align-items: center !important;
|
137
|
+
justify-content: center !important;
|
138
|
+
min-width: 80px;
|
139
|
+
min-height: 40px;
|
140
|
+
border-radius: 3px !important;
|
141
|
+
border: 1px solid #cd2029 !important;
|
142
|
+
padding: 5px !important;
|
143
|
+
margin: 2px !important;
|
144
|
+
background-color: transparent !important;
|
145
|
+
color: #cd2029 !important;
|
146
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
147
|
+
transition: 0.3s ease-in-out !important;
|
148
|
+
}
|
149
|
+
|
150
|
+
.outlined-button-danger:hover {
|
151
|
+
background-color: #cd2029 !important;
|
152
|
+
color: #ffffff !important;
|
153
|
+
}
|
154
|
+
|
155
|
+
.outlined-button-warning {
|
156
|
+
display: flex;
|
157
|
+
align-items: center !important;
|
158
|
+
justify-content: center !important;
|
159
|
+
min-width: 80px;
|
160
|
+
min-height: 40px;
|
161
|
+
border-radius: 3px !important;
|
162
|
+
border: 1px solid #f1c40f !important;
|
163
|
+
padding: 5px !important;
|
164
|
+
margin: 2px !important;
|
165
|
+
background-color: transparent !important;
|
166
|
+
color: #f1c40f !important;
|
167
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
168
|
+
transition: 0.3s ease-in-out !important;
|
169
|
+
}
|
170
|
+
|
171
|
+
.outlined-button-warning:hover {
|
172
|
+
background-color: #f1c40f !important;
|
173
|
+
color: #ffffff !important;
|
174
|
+
}
|
175
|
+
|
176
|
+
.outlined-button-success {
|
177
|
+
display: flex;
|
178
|
+
align-items: center !important;
|
179
|
+
justify-content: center !important;
|
180
|
+
min-width: 80px;
|
181
|
+
min-height: 40px;
|
182
|
+
border-radius: 3px !important;
|
183
|
+
border: 1px solid #2ecc71 !important;
|
184
|
+
padding: 5px !important;
|
185
|
+
margin: 2px !important;
|
186
|
+
background-color: transparent !important;
|
187
|
+
color: #2ecc71 !important;
|
188
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
189
|
+
transition: 0.3s ease-in-out !important;
|
190
|
+
}
|
191
|
+
|
192
|
+
.outlined-button-success:hover {
|
193
|
+
background-color: #2ecc71 !important;
|
194
|
+
color: #ffffff !important;
|
195
|
+
}
|
196
|
+
|
197
|
+
.outlined-button-info {
|
198
|
+
display: flex;
|
199
|
+
align-items: center !important;
|
200
|
+
justify-content: center !important;
|
201
|
+
min-width: 80px;
|
202
|
+
min-height: 40px;
|
203
|
+
border-radius: 3px !important;
|
204
|
+
border: 1px solid #2980b9 !important;
|
205
|
+
padding: 5px !important;
|
206
|
+
margin: 2px !important;
|
207
|
+
background-color: transparent !important;
|
208
|
+
color: #2980b9 !important;
|
209
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
210
|
+
transition: 0.3s ease-in-out !important;
|
211
|
+
}
|
212
|
+
|
213
|
+
.outlined-button-info:hover {
|
214
|
+
background-color: #2980b9 !important;
|
215
|
+
color: #ffffff !important;
|
216
|
+
}
|
217
|
+
|
218
|
+
.outlined-button-purple {
|
219
|
+
display: flex;
|
220
|
+
align-items: center !important;
|
221
|
+
justify-content: center !important;
|
222
|
+
min-width: 80px;
|
223
|
+
min-height: 40px;
|
224
|
+
border-radius: 3px !important;
|
225
|
+
border: 1px solid #9b59b6 !important;
|
226
|
+
padding: 5px !important;
|
227
|
+
margin: 2px !important;
|
228
|
+
background-color: transparent !important;
|
229
|
+
color: #9b59b6 !important;
|
230
|
+
-webkit-transition: 0.3s ease-in-out !important;
|
231
|
+
transition: 0.3s ease-in-out !important;
|
232
|
+
}
|
233
|
+
|
234
|
+
.outlined-button-purple:hover {
|
235
|
+
background-color: #9b59b6 !important;
|
236
|
+
color: #ffffff !important;
|
237
|
+
}
|
@@ -0,0 +1,162 @@
|
|
1
|
+
html, body, h1, h2, h3, h4, h5, h6, a, button, li, ul {
|
2
|
+
font-family: 'Noto Sans';
|
3
|
+
}
|
4
|
+
|
5
|
+
h1 {
|
6
|
+
font-size: 3.5rem;
|
7
|
+
padding: 0;
|
8
|
+
}
|
9
|
+
|
10
|
+
h2 {
|
11
|
+
font-size: 3rem;
|
12
|
+
padding: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
h3 {
|
16
|
+
font-size: 2.5rem;
|
17
|
+
padding: 0;
|
18
|
+
}
|
19
|
+
|
20
|
+
h4 {
|
21
|
+
font-size: 2rem;
|
22
|
+
padding: 0;
|
23
|
+
}
|
24
|
+
|
25
|
+
h5 {
|
26
|
+
font-size: 1.5rem;
|
27
|
+
padding: 0;
|
28
|
+
}
|
29
|
+
|
30
|
+
h6 {
|
31
|
+
font-size: 1rem;
|
32
|
+
padding: 0;
|
33
|
+
}
|
34
|
+
|
35
|
+
.text-is-centered {
|
36
|
+
text-align: center !important;
|
37
|
+
}
|
38
|
+
|
39
|
+
.text-is-right {
|
40
|
+
text-align: right !important;
|
41
|
+
}
|
42
|
+
|
43
|
+
.text-is-left {
|
44
|
+
text-align: left !important;
|
45
|
+
}
|
46
|
+
|
47
|
+
.text-is-white {
|
48
|
+
color: #ffffff !important;
|
49
|
+
}
|
50
|
+
|
51
|
+
.text-is-grey {
|
52
|
+
color: #c3c3c3 !important;
|
53
|
+
}
|
54
|
+
|
55
|
+
.size-is-1 {
|
56
|
+
font-size: 3.5rem !important;
|
57
|
+
}
|
58
|
+
|
59
|
+
.size-is-2 {
|
60
|
+
font-size: 3rem !important;
|
61
|
+
}
|
62
|
+
|
63
|
+
.size-is-3 {
|
64
|
+
font-size: 2.5rem !important;
|
65
|
+
}
|
66
|
+
|
67
|
+
.size-is-4 {
|
68
|
+
font-size: 2rem !important;
|
69
|
+
}
|
70
|
+
|
71
|
+
.size-is-5 {
|
72
|
+
font-size: 1.5rem !important;
|
73
|
+
}
|
74
|
+
|
75
|
+
.size-is-6 {
|
76
|
+
font-size: 1rem !important;
|
77
|
+
}
|
78
|
+
|
79
|
+
.size-is-7 {
|
80
|
+
font-size: 0.75rem !important;
|
81
|
+
}
|
82
|
+
|
83
|
+
.s-subtitle {
|
84
|
+
font-size: 1rem;
|
85
|
+
font-weight: 300;
|
86
|
+
}
|
87
|
+
|
88
|
+
.s-title {
|
89
|
+
font-size: 2rem;
|
90
|
+
font-weight: 600;
|
91
|
+
}
|
92
|
+
|
93
|
+
html, body {
|
94
|
+
margin: 0 !important;
|
95
|
+
}
|
96
|
+
|
97
|
+
hr {
|
98
|
+
width: 55vh;
|
99
|
+
margin: 0 auto;
|
100
|
+
border: 1px solid #e1e1e1;
|
101
|
+
}
|
102
|
+
|
103
|
+
.s-primary {
|
104
|
+
background-color: #1dbce0 !important;
|
105
|
+
color: #ffffff !important;
|
106
|
+
}
|
107
|
+
|
108
|
+
.s-info {
|
109
|
+
background-color: #2980b9 !important;
|
110
|
+
color: #ffffff !important;
|
111
|
+
}
|
112
|
+
|
113
|
+
.s-success {
|
114
|
+
background-color: #2ecc71 !important;
|
115
|
+
color: #ffffff !important;
|
116
|
+
}
|
117
|
+
|
118
|
+
.s-warning {
|
119
|
+
background-color: #f1c40f !important;
|
120
|
+
color: #ffffff !important;
|
121
|
+
}
|
122
|
+
|
123
|
+
.s-danger {
|
124
|
+
background-color: #cd2029 !important;
|
125
|
+
color: #ffffff !important;
|
126
|
+
}
|
127
|
+
|
128
|
+
.s-default {
|
129
|
+
background-color: #e1e1e1 !important;
|
130
|
+
color: #212529;
|
131
|
+
}
|
132
|
+
|
133
|
+
.s-light {
|
134
|
+
background-color: #ecf0f1 !important;
|
135
|
+
}
|
136
|
+
|
137
|
+
.s-grey {
|
138
|
+
background-color: #bdc3c7 !important;
|
139
|
+
color: #ffffff !important;
|
140
|
+
}
|
141
|
+
|
142
|
+
.s-purple {
|
143
|
+
background-color: #9b59b6 !important;
|
144
|
+
color: #ffffff !important;
|
145
|
+
}
|
146
|
+
|
147
|
+
.s-orange {
|
148
|
+
background-color: #e67e22 !important;
|
149
|
+
color: #ffffff !important;
|
150
|
+
}
|
151
|
+
|
152
|
+
.s-black {
|
153
|
+
background-color: #212529 !important;
|
154
|
+
color: #ffffff !important;
|
155
|
+
}
|
156
|
+
|
157
|
+
.container {
|
158
|
+
max-width: 1344px !important;
|
159
|
+
margin: 0 auto !important;
|
160
|
+
height: auto !important;
|
161
|
+
padding: 30px !important;
|
162
|
+
}
|
@@ -0,0 +1,91 @@
|
|
1
|
+
html, body, h1, h2, h3, h4, h5, h6, a, button, li, ul {
|
2
|
+
font-family: 'Noto Sans';
|
3
|
+
}
|
4
|
+
|
5
|
+
h1 {
|
6
|
+
font-size: 3.5rem;
|
7
|
+
padding: 0;
|
8
|
+
}
|
9
|
+
|
10
|
+
h2 {
|
11
|
+
font-size: 3rem;
|
12
|
+
padding: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
h3 {
|
16
|
+
font-size: 2.5rem;
|
17
|
+
padding: 0;
|
18
|
+
}
|
19
|
+
|
20
|
+
h4 {
|
21
|
+
font-size: 2rem;
|
22
|
+
padding: 0;
|
23
|
+
}
|
24
|
+
|
25
|
+
h5 {
|
26
|
+
font-size: 1.5rem;
|
27
|
+
padding: 0;
|
28
|
+
}
|
29
|
+
|
30
|
+
h6 {
|
31
|
+
font-size: 1rem;
|
32
|
+
padding: 0;
|
33
|
+
}
|
34
|
+
|
35
|
+
.text-is-centered {
|
36
|
+
text-align: center !important;
|
37
|
+
}
|
38
|
+
|
39
|
+
.text-is-right {
|
40
|
+
text-align: right !important;
|
41
|
+
}
|
42
|
+
|
43
|
+
.text-is-left {
|
44
|
+
text-align: left !important;
|
45
|
+
}
|
46
|
+
|
47
|
+
.text-is-white {
|
48
|
+
color: #ffffff !important;
|
49
|
+
}
|
50
|
+
|
51
|
+
.text-is-grey {
|
52
|
+
color: #c3c3c3 !important;
|
53
|
+
}
|
54
|
+
|
55
|
+
.size-is-1 {
|
56
|
+
font-size: 3.5rem !important;
|
57
|
+
}
|
58
|
+
|
59
|
+
.size-is-2 {
|
60
|
+
font-size: 3rem !important;
|
61
|
+
}
|
62
|
+
|
63
|
+
.size-is-3 {
|
64
|
+
font-size: 2.5rem !important;
|
65
|
+
}
|
66
|
+
|
67
|
+
.size-is-4 {
|
68
|
+
font-size: 2rem !important;
|
69
|
+
}
|
70
|
+
|
71
|
+
.size-is-5 {
|
72
|
+
font-size: 1.5rem !important;
|
73
|
+
}
|
74
|
+
|
75
|
+
.size-is-6 {
|
76
|
+
font-size: 1rem !important;
|
77
|
+
}
|
78
|
+
|
79
|
+
.size-is-7 {
|
80
|
+
font-size: 0.75rem !important;
|
81
|
+
}
|
82
|
+
|
83
|
+
.s-subtitle {
|
84
|
+
font-size: 1rem;
|
85
|
+
font-weight: 300;
|
86
|
+
}
|
87
|
+
|
88
|
+
.s-title {
|
89
|
+
font-size: 2rem;
|
90
|
+
font-weight: 600;
|
91
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
/* No CSS */
|
@@ -0,0 +1 @@
|
|
1
|
+
/* No CSS */
|
data/assets/main.sass
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@import "seiro"
|
1
|
+
@import "../_sass/seiro.sass"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: seiro
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nadia Rodriguez
|
@@ -65,18 +65,27 @@ files:
|
|
65
65
|
- _layouts/home.html
|
66
66
|
- _layouts/post.html
|
67
67
|
- _sass/components/_all.sass
|
68
|
+
- _sass/components/card.css
|
68
69
|
- _sass/components/card.sass
|
70
|
+
- _sass/components/gallery.css
|
69
71
|
- _sass/components/gallery.sass
|
70
72
|
- _sass/elements/_all.sass
|
73
|
+
- _sass/elements/banners.css
|
71
74
|
- _sass/elements/banners.sass
|
75
|
+
- _sass/elements/buttons.css
|
72
76
|
- _sass/elements/buttons.sass
|
73
77
|
- _sass/modifiers/_all.sass
|
78
|
+
- _sass/modifiers/defaults.css
|
74
79
|
- _sass/modifiers/defaults.sass
|
80
|
+
- _sass/modifiers/typography-helpers.css
|
75
81
|
- _sass/modifiers/typography-helpers.sass
|
76
82
|
- _sass/seiro.sass
|
77
83
|
- _sass/variables/_all.sass
|
84
|
+
- _sass/variables/derived-variables.css
|
78
85
|
- _sass/variables/derived-variables.sass
|
86
|
+
- _sass/variables/element-variables.css
|
79
87
|
- _sass/variables/element-variables.sass
|
88
|
+
- _sass/variables/initial-variables.css
|
80
89
|
- _sass/variables/initial-variables.sass
|
81
90
|
- assets/main.sass
|
82
91
|
homepage: https://github.com/nadsr2/seiro-jekyll-theme
|