jekyll-theme-mastodon 1.0.0
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 +7 -0
- data/_includes/analytics.html +36 -0
- data/_includes/analytics/amplitude.js +35 -0
- data/_includes/analytics/gtag.js +9 -0
- data/_includes/analytics/gtm.js +5 -0
- data/_includes/analytics/hotjar.js +8 -0
- data/_includes/analytics/matomo.js +10 -0
- data/_includes/analytics/quantcast.js +12 -0
- data/_includes/footer.html +28 -0
- data/_includes/head.html +41 -0
- data/_includes/header.html +18 -0
- data/_includes/resources.html +20 -0
- data/_layouts/about.html +71 -0
- data/_layouts/default.html +15 -0
- data/_layouts/error.html +31 -0
- data/_layouts/none.html +4 -0
- data/_layouts/page.html +15 -0
- data/_layouts/post.html +56 -0
- data/_layouts/profile.html +199 -0
- data/_layouts/redirect.html +18 -0
- data/_layouts/rss.html +29 -0
- data/_layouts/sitemap.html +29 -0
- data/_layouts/tags.html +32 -0
- data/_sass/_about.scss +905 -0
- data/_sass/_accounts.scss +327 -0
- data/_sass/_admin.scss +918 -0
- data/_sass/_basics.scss +272 -0
- data/_sass/_boost.scss +32 -0
- data/_sass/_compact_header.scss +34 -0
- data/_sass/_components.scss +7363 -0
- data/_sass/_containers.scss +903 -0
- data/_sass/_dashboard.scss +78 -0
- data/_sass/_font-montserrat.scss +19 -0
- data/_sass/_font-roboto.scss +47 -0
- data/_sass/_font-robotomono.scss +11 -0
- data/_sass/_footer.scss +137 -0
- data/_sass/_forms.scss +1009 -0
- data/_sass/_highlights.scss +146 -0
- data/_sass/_introduction.scss +154 -0
- data/_sass/_lists.scss +19 -0
- data/_sass/_mixins.scss +56 -0
- data/_sass/_modal.scss +35 -0
- data/_sass/_polls.scss +274 -0
- data/_sass/_reset.scss +108 -0
- data/_sass/_rtl.scss +468 -0
- data/_sass/_statuses.scss +191 -0
- data/_sass/_tables.scss +293 -0
- data/_sass/_variables.scss +58 -0
- data/_sass/_widgets.scss +619 -0
- data/assets/404.gif +0 -0
- data/assets/avatar.png +0 -0
- data/assets/banner.png +0 -0
- data/assets/fonts/montserrat/Montserrat-Medium.ttf +0 -0
- data/assets/fonts/montserrat/Montserrat-Regular.ttf +0 -0
- data/assets/fonts/montserrat/Montserrat-Regular.woff +0 -0
- data/assets/fonts/montserrat/Montserrat-Regular.woff2 +0 -0
- data/assets/fonts/roboto/roboto-bold-webfont.svg +16273 -0
- data/assets/fonts/roboto/roboto-bold-webfont.ttf +0 -0
- data/assets/fonts/roboto/roboto-bold-webfont.woff +0 -0
- data/assets/fonts/roboto/roboto-bold-webfont.woff2 +0 -0
- data/assets/fonts/roboto/roboto-italic-webfont.svg +15513 -0
- data/assets/fonts/roboto/roboto-italic-webfont.ttf +0 -0
- data/assets/fonts/roboto/roboto-italic-webfont.woff +0 -0
- data/assets/fonts/roboto/roboto-italic-webfont.woff2 +0 -0
- data/assets/fonts/roboto/roboto-medium-webfont.svg +16273 -0
- data/assets/fonts/roboto/roboto-medium-webfont.ttf +0 -0
- data/assets/fonts/roboto/roboto-medium-webfont.woff +0 -0
- data/assets/fonts/roboto/roboto-medium-webfont.woff2 +0 -0
- data/assets/fonts/roboto/roboto-regular-webfont.svg +15513 -0
- data/assets/fonts/roboto/roboto-regular-webfont.ttf +0 -0
- data/assets/fonts/roboto/roboto-regular-webfont.woff +0 -0
- data/assets/fonts/roboto/roboto-regular-webfont.woff2 +0 -0
- data/assets/fonts/robotomono/robotomono-regular-webfont.svg +1051 -0
- data/assets/fonts/robotomono/robotomono-regular-webfont.ttf +0 -0
- data/assets/fonts/robotomono/robotomono-regular-webfont.woff +0 -0
- data/assets/fonts/robotomono/robotomono-regular-webfont.woff2 +0 -0
- data/assets/hero.png +0 -0
- data/assets/mastodon.scss +34 -0
- data/license +661 -0
- data/readme.md +3 -0
- metadata +136 -0
data/_sass/_reset.scss
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/* http://meyerweb.com/eric/tools/css/reset/
|
|
2
|
+
v2.0 | 20110126
|
|
3
|
+
License: none (public domain)
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
html, body, div, span, applet, object, iframe,
|
|
7
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
8
|
+
a, abbr, acronym, address, big, cite, code,
|
|
9
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
|
10
|
+
small, strike, strong, sub, sup, tt, var,
|
|
11
|
+
b, u, i, center,
|
|
12
|
+
dl, dt, dd, ol, ul, li,
|
|
13
|
+
fieldset, form, label, legend,
|
|
14
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
|
15
|
+
article, aside, canvas, details, embed,
|
|
16
|
+
figure, figcaption, footer, header, hgroup,
|
|
17
|
+
menu, nav, output, ruby, section, summary,
|
|
18
|
+
time, mark, audio, video {
|
|
19
|
+
margin: 0;
|
|
20
|
+
padding: 0;
|
|
21
|
+
border: 0;
|
|
22
|
+
font-size: 100%;
|
|
23
|
+
font: inherit;
|
|
24
|
+
vertical-align: baseline;
|
|
25
|
+
}
|
|
26
|
+
strong {font-weight: bold;}
|
|
27
|
+
em {font-style: italic;}
|
|
28
|
+
|
|
29
|
+
/* HTML5 display-role reset for older browsers */
|
|
30
|
+
article, aside, details, figcaption, figure,
|
|
31
|
+
footer, header, hgroup, menu, nav, section {
|
|
32
|
+
display: block;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
body {
|
|
36
|
+
line-height: 1;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
ol, ul {
|
|
40
|
+
list-style-type: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
blockquote, q {
|
|
44
|
+
quotes: none;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
blockquote:before, blockquote:after,
|
|
48
|
+
q:before, q:after {
|
|
49
|
+
content: '';
|
|
50
|
+
content: none;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
table {
|
|
54
|
+
overflow: auto;
|
|
55
|
+
word-break: keep-all;
|
|
56
|
+
border-collapse: collapse;
|
|
57
|
+
border-spacing: 0;
|
|
58
|
+
margin: 1em 0;
|
|
59
|
+
width: 100%;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
hr {
|
|
63
|
+
box-sizing: content-box;
|
|
64
|
+
height: 1px;
|
|
65
|
+
background-color: $ui-secondary-color;
|
|
66
|
+
border: none;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
html {
|
|
70
|
+
scrollbar-color: lighten($ui-base-color, 4%) rgba($base-overlay-background, 0.1);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
::-webkit-scrollbar {
|
|
74
|
+
width: 12px;
|
|
75
|
+
height: 12px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
::-webkit-scrollbar-thumb {
|
|
79
|
+
background: lighten($ui-base-color, 4%);
|
|
80
|
+
border: 0px none $base-border-color;
|
|
81
|
+
border-radius: 50px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
::-webkit-scrollbar-thumb:hover {
|
|
85
|
+
background: lighten($ui-base-color, 6%);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
::-webkit-scrollbar-thumb:active {
|
|
89
|
+
background: lighten($ui-base-color, 4%);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
::-webkit-scrollbar-track {
|
|
93
|
+
border: 0px none $base-border-color;
|
|
94
|
+
border-radius: 0;
|
|
95
|
+
background: rgba($base-overlay-background, 0.1);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
::-webkit-scrollbar-track:hover {
|
|
99
|
+
background: $ui-base-color;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
::-webkit-scrollbar-track:active {
|
|
103
|
+
background: $ui-base-color;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
::-webkit-scrollbar-corner {
|
|
107
|
+
background: transparent;
|
|
108
|
+
}
|
data/_sass/_rtl.scss
ADDED
|
@@ -0,0 +1,468 @@
|
|
|
1
|
+
body.rtl {
|
|
2
|
+
direction: rtl;
|
|
3
|
+
|
|
4
|
+
.column-header > button {
|
|
5
|
+
text-align: right;
|
|
6
|
+
padding-left: 0;
|
|
7
|
+
padding-right: 15px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.radio-button__input {
|
|
11
|
+
margin-right: 0;
|
|
12
|
+
margin-left: 10px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.directory__card__bar .display-name {
|
|
16
|
+
margin-left: 0;
|
|
17
|
+
margin-right: 15px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.display-name,
|
|
21
|
+
.announcements__item {
|
|
22
|
+
text-align: right;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.announcements__item__range {
|
|
26
|
+
padding-right: 0;
|
|
27
|
+
padding-left: 18px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.reactions-bar {
|
|
31
|
+
margin-left: auto;
|
|
32
|
+
margin-right: -2px;
|
|
33
|
+
direction: rtl;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.reactions-bar__item__count {
|
|
37
|
+
margin-left: 0;
|
|
38
|
+
margin-right: 6px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.announcements__pagination {
|
|
42
|
+
right: auto;
|
|
43
|
+
left: 0;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.notification__message {
|
|
47
|
+
margin-left: 0;
|
|
48
|
+
margin-right: 68px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.announcements__mastodon,
|
|
52
|
+
.drawer__inner__mastodon > img {
|
|
53
|
+
transform: scaleX(-1);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.notification__favourite-icon-wrapper {
|
|
57
|
+
left: auto;
|
|
58
|
+
right: -26px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.landing-page__logo {
|
|
62
|
+
margin-right: 0;
|
|
63
|
+
margin-left: 20px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.landing-page .features-list .features-list__row .visual {
|
|
67
|
+
margin-left: 0;
|
|
68
|
+
margin-right: 15px;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.column-link__icon,
|
|
72
|
+
.column-header__icon {
|
|
73
|
+
margin-right: 0;
|
|
74
|
+
margin-left: 5px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.compose-form .compose-form__buttons-wrapper .character-counter__wrapper {
|
|
78
|
+
margin-right: 0;
|
|
79
|
+
margin-left: 4px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.navigation-bar__profile {
|
|
83
|
+
margin-left: 0;
|
|
84
|
+
margin-right: 8px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.search__input {
|
|
88
|
+
padding-right: 10px;
|
|
89
|
+
padding-left: 30px;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.search__icon .fa {
|
|
93
|
+
right: auto;
|
|
94
|
+
left: 10px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.columns-area {
|
|
98
|
+
direction: rtl;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.column-header__buttons {
|
|
102
|
+
left: 0;
|
|
103
|
+
right: auto;
|
|
104
|
+
margin-left: 0;
|
|
105
|
+
margin-right: -15px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.column-inline-form .icon-button {
|
|
109
|
+
margin-left: 0;
|
|
110
|
+
margin-right: 5px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.column-header__links .text-btn {
|
|
114
|
+
margin-left: 10px;
|
|
115
|
+
margin-right: 0;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.account__avatar-wrapper {
|
|
119
|
+
float: right;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.column-header__back-button {
|
|
123
|
+
padding-left: 5px;
|
|
124
|
+
padding-right: 0;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.column-header__setting-arrows {
|
|
128
|
+
float: left;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.setting-toggle__label {
|
|
132
|
+
margin-left: 0;
|
|
133
|
+
margin-right: 8px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.status__avatar {
|
|
137
|
+
left: auto;
|
|
138
|
+
right: 10px;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.status,
|
|
142
|
+
.activity-stream .status.light {
|
|
143
|
+
padding-left: 10px;
|
|
144
|
+
padding-right: 68px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.status__info .status__display-name,
|
|
148
|
+
.activity-stream .status.light .status__display-name {
|
|
149
|
+
padding-left: 25px;
|
|
150
|
+
padding-right: 0;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.activity-stream .pre-header {
|
|
154
|
+
padding-right: 68px;
|
|
155
|
+
padding-left: 0;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.status__prepend {
|
|
159
|
+
margin-left: 0;
|
|
160
|
+
margin-right: 68px;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.status__prepend-icon-wrapper {
|
|
164
|
+
left: auto;
|
|
165
|
+
right: -26px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.activity-stream .pre-header .pre-header__icon {
|
|
169
|
+
left: auto;
|
|
170
|
+
right: 42px;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.account__header__tabs__buttons > .icon-button {
|
|
174
|
+
margin-right: 0;
|
|
175
|
+
margin-left: 8px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.account__avatar-overlay-overlay {
|
|
179
|
+
right: auto;
|
|
180
|
+
left: 0;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.column-back-button--slim-button {
|
|
184
|
+
right: auto;
|
|
185
|
+
left: 0;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.status__relative-time,
|
|
189
|
+
.status__visibility-icon,
|
|
190
|
+
.activity-stream .status.light .status__header .status__meta {
|
|
191
|
+
float: left;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.status__action-bar {
|
|
195
|
+
&__counter {
|
|
196
|
+
margin-right: 0;
|
|
197
|
+
margin-left: 11px;
|
|
198
|
+
|
|
199
|
+
.status__action-bar-button {
|
|
200
|
+
margin-right: 0;
|
|
201
|
+
margin-left: 4px;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.status__action-bar-button {
|
|
207
|
+
float: right;
|
|
208
|
+
margin-right: 0;
|
|
209
|
+
margin-left: 18px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.status__action-bar-dropdown {
|
|
213
|
+
float: right;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.privacy-dropdown__dropdown {
|
|
217
|
+
margin-left: 0;
|
|
218
|
+
margin-right: 40px;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.privacy-dropdown__option__icon {
|
|
222
|
+
margin-left: 10px;
|
|
223
|
+
margin-right: 0;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.picture-in-picture__header__account .display-name,
|
|
227
|
+
.detailed-status__display-name .display-name {
|
|
228
|
+
text-align: right;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.detailed-status__display-avatar {
|
|
232
|
+
margin-right: 0;
|
|
233
|
+
margin-left: 10px;
|
|
234
|
+
float: right;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.picture-in-picture__header__account .account__avatar {
|
|
238
|
+
margin-right: 0;
|
|
239
|
+
margin-left: 10px;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.icon-button__counter {
|
|
243
|
+
margin-left: 0;
|
|
244
|
+
margin-right: 4px;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.notifications-permission-banner__close {
|
|
248
|
+
right: auto;
|
|
249
|
+
left: 10px;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.detailed-status__favorites,
|
|
253
|
+
.detailed-status__reblogs {
|
|
254
|
+
margin-left: 0;
|
|
255
|
+
margin-right: 6px;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.fa-ul {
|
|
259
|
+
margin-left: 2.14285714em;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.fa-li {
|
|
263
|
+
left: auto;
|
|
264
|
+
right: -2.14285714em;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.admin-wrapper {
|
|
268
|
+
direction: rtl;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.admin-wrapper .sidebar ul a i.fa,
|
|
272
|
+
a.table-action-link i.fa {
|
|
273
|
+
margin-right: 0;
|
|
274
|
+
margin-left: 5px;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.simple_form .check_boxes .checkbox label {
|
|
278
|
+
padding-left: 0;
|
|
279
|
+
padding-right: 25px;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.simple_form .input.with_label.boolean label.checkbox {
|
|
283
|
+
padding-left: 25px;
|
|
284
|
+
padding-right: 0;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.simple_form .check_boxes .checkbox input[type="checkbox"],
|
|
288
|
+
.simple_form .input.boolean input[type="checkbox"] {
|
|
289
|
+
left: auto;
|
|
290
|
+
right: 0;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.simple_form .input.radio_buttons .radio {
|
|
294
|
+
left: auto;
|
|
295
|
+
right: 0;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.simple_form .input.radio_buttons .radio > label {
|
|
299
|
+
padding-right: 28px;
|
|
300
|
+
padding-left: 0;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.simple_form .input-with-append .input input {
|
|
304
|
+
padding-left: 142px;
|
|
305
|
+
padding-right: 0;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.simple_form .input.boolean label.checkbox {
|
|
309
|
+
left: auto;
|
|
310
|
+
right: 0;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.simple_form .input.boolean .label_input,
|
|
314
|
+
.simple_form .input.boolean .hint {
|
|
315
|
+
padding-left: 0;
|
|
316
|
+
padding-right: 28px;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.simple_form .label_input__append {
|
|
320
|
+
right: auto;
|
|
321
|
+
left: 3px;
|
|
322
|
+
|
|
323
|
+
&::after {
|
|
324
|
+
right: auto;
|
|
325
|
+
left: 0;
|
|
326
|
+
background-image: linear-gradient(to left, rgba(darken($ui-base-color, 10%), 0), darken($ui-base-color, 10%));
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.simple_form select {
|
|
331
|
+
background: darken($ui-base-color, 10%) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.933 18.467' height='19.698' width='15.929'><path d='M3.467 14.967l-3.393-3.5H14.86l-3.392 3.5c-1.866 1.925-3.666 3.5-4 3.5-.335 0-2.135-1.575-4-3.5zm.266-11.234L7.467 0 11.2 3.733l3.733 3.734H0l3.733-3.734z' fill='#{hex-color(lighten($ui-base-color, 12%))}'/></svg>") no-repeat left 8px center / auto 16px;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.table th,
|
|
335
|
+
.table td {
|
|
336
|
+
text-align: right;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.filters .filter-subset {
|
|
340
|
+
margin-right: 0;
|
|
341
|
+
margin-left: 45px;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.landing-page .header-wrapper .mascot {
|
|
345
|
+
right: 60px;
|
|
346
|
+
left: auto;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.landing-page__call-to-action .row__information-board {
|
|
350
|
+
direction: rtl;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.landing-page .header .hero .floats .float-1 {
|
|
354
|
+
left: -120px;
|
|
355
|
+
right: auto;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.landing-page .header .hero .floats .float-2 {
|
|
359
|
+
left: 210px;
|
|
360
|
+
right: auto;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.landing-page .header .hero .floats .float-3 {
|
|
364
|
+
left: 110px;
|
|
365
|
+
right: auto;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.landing-page .header .links .brand img {
|
|
369
|
+
left: 0;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.landing-page .fa-external-link {
|
|
373
|
+
padding-right: 5px;
|
|
374
|
+
padding-left: 0 !important;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.landing-page .features #mastodon-timeline {
|
|
378
|
+
margin-right: 0;
|
|
379
|
+
margin-left: 30px;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
@media screen and (min-width: 631px) {
|
|
383
|
+
.column,
|
|
384
|
+
.drawer {
|
|
385
|
+
padding-left: 5px;
|
|
386
|
+
padding-right: 5px;
|
|
387
|
+
|
|
388
|
+
&:first-child {
|
|
389
|
+
padding-left: 5px;
|
|
390
|
+
padding-right: 10px;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.columns-area > div {
|
|
395
|
+
.column,
|
|
396
|
+
.drawer {
|
|
397
|
+
padding-left: 5px;
|
|
398
|
+
padding-right: 5px;
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.columns-area--mobile .column,
|
|
404
|
+
.columns-area--mobile .drawer {
|
|
405
|
+
padding-left: 0;
|
|
406
|
+
padding-right: 0;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.public-layout {
|
|
410
|
+
.header {
|
|
411
|
+
.nav-button {
|
|
412
|
+
margin-left: 8px;
|
|
413
|
+
margin-right: 0;
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.public-account-header__tabs {
|
|
418
|
+
margin-left: 0;
|
|
419
|
+
margin-right: 20px;
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.landing-page__information {
|
|
424
|
+
.account__display-name {
|
|
425
|
+
margin-right: 0;
|
|
426
|
+
margin-left: 5px;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.account__avatar-wrapper {
|
|
430
|
+
margin-left: 12px;
|
|
431
|
+
margin-right: 0;
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.card__bar .display-name {
|
|
436
|
+
margin-left: 0;
|
|
437
|
+
margin-right: 15px;
|
|
438
|
+
text-align: right;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.fa-chevron-left::before {
|
|
442
|
+
content: "\F054";
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.fa-chevron-right::before {
|
|
446
|
+
content: "\F053";
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.column-back-button__icon {
|
|
450
|
+
margin-right: 0;
|
|
451
|
+
margin-left: 5px;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.column-header__setting-arrows .column-header__setting-btn:last-child {
|
|
455
|
+
padding-left: 0;
|
|
456
|
+
padding-right: 10px;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.simple_form .input.radio_buttons .radio > label input {
|
|
460
|
+
left: auto;
|
|
461
|
+
right: 0;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.picture-in-picture {
|
|
465
|
+
right: auto;
|
|
466
|
+
left: 20px;
|
|
467
|
+
}
|
|
468
|
+
}
|