Welcome to mirror list, hosted at ThFree Co, Russian Federation.

site.css « css « assets - github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8fcbe8cde90cfb1374332cc25d6aad1162533a35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
.header {
  min-height: 400px;
  height: 50vh;
}

/* .article styles */
.article {
  @apply px-5;
  @apply pb-5;
}

.article .article__header {
  @apply text-right;
  @apply pb-6;
}

.article .artitle__title {
  @apply mb-2;
}

.article a {
  @apply underline;
}

.article h1 {
  @apply text-5xl;
  @apply font-semibold;
}

.article h2 {
  @apply text-4xl;
  @apply font-semibold;
}

.article h3 {
  @apply text-3xl;
}

.article h4 {
  @apply text-2xl;
}

.article h5 {
  @apply text-xl;
}

.article h6 {
  @apply text-base;
  @apply font-semibold;
  @apply uppercase;
}

.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6,
.article p,
.article ul,
.article ol,
.article dl {
  @apply my-6;
  text-rendering: geometricPrecision;
}

.article p,
.article ul,
.article ol,
.article dl,
.article td {
  @apply font-serif;
  @apply text-xl;
}


.article ol,
.article ul {
  @apply ml-1;
  @apply list-inside;
  list-style-type: initial;
}

.article blockquote {
  @apply pl-5;
  @apply border-l-4;
  @apply border-gray-600;
}

.article blockquote p {
  margin: 0.8em 0;
  font-style: italic;
}

.article blockquote small {
  display: inline-block;
  margin: 0.8em 0 0.8em 1.5em;
  font-size: 0.9em;
  color: #CCC;
}

.article blockquote small:before {
  content: "\2014 \00A0";
}

.article blockquote cite {
  font-weight: 700;
}

.article blockquote cite a {
  font-weight: normal;
}

.article code, tt {
  padding: 1px 3px;
  @apply font-mono;
  @apply text-lg;

  white-space: pre-wrap;
  border: #E3EDF3 1px solid;
  background: #F7FAFB;
  border-radius: 2px;
}

.article pre {
  @apply my-2;
  @apply border-solid;
  @apply border;
  @apply border-gray-300;
  @apply w-full;
  @apply p-2;
  @apply font-mono;
  @apply text-lg;
  white-space: pre;
  overflow: auto;
  @apply bg-white;
  @apply rounded;
}

.article pre code,
.article pre tt {
  font-size: inherit;
  white-space: pre-wrap;
  @apply bg-transparent;
  @apply border-0;
  @apply p-0;
}

.article kbd {
  display: inline-block;
  margin-bottom: 0.4em;
  padding: 1px 8px;
  border: #CCC 1px solid;
  color: #666;
  text-shadow: #FFF 0 1px 0;
  font-size: 0.9em;
  font-weight: 700;
  background: #F4F4F4;
  border-radius: 4px;
  box-shadow:
      0 1px 0 rgba(0, 0, 0, 0.2),
      0 1px 0 0 #fff inset;
}

.article table {
  @apply my-6;
  @apply w-full;
  @apply max-w-full;
  @apply bg-transparent;
}

.article table th,
.article table td {
  @apply p-2;
  @apply align-top;
  border-top: #EFEFEF 1px solid;
}

.article table th {
  @apply text-black;
}

.article table caption + thead tr:first-child th,
.article table caption + thead tr:first-child td,
.article table colgroup + thead tr:first-child th,
.article table colgroup + thead tr:first-child td,
.article table thead:first-child tr:first-child th,
.article table thead:first-child tr:first-child td {
  @apply border-t-0;
}

.article table tbody > tr:nth-child(odd) > td,
.article table tbody > tr:nth-child(odd) > th {
  @apply bg-gray-100;
}

.article table.plain tbody > tr:nth-child(odd) > td,
.article table.plain tbody > tr:nth-child(odd) > th {
  @apply bg-transparent;
}

.article iframe,
.article .fluid-width-video-wrapper {
  @apply block;
  @apply my-6;
}

.intro p {
  @apply text-2xl;
}

.comments {
  @apply my-4;
  @apply py-4;
  @apply border-t;
  @apply border-gray-400;
}

.comments h2 {
  @apply mt-0;
}