-
Notifications
You must be signed in to change notification settings - Fork 18
/
style.css
194 lines (151 loc) · 2.62 KB
/
style.css
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
@tailwind base;
@tailwind components;
body {
@apply pb-10 text-center text-xl text-blackish;
}
@screen sm {
body {
@apply text-2xl;
}
}
b {
@apply font-bold;
}
a {
@apply underline font-semibold;
}
a:hover {
@apply text-orange-700;
}
a.menu-item {
@apply block font-black py-2 leading-none no-underline
}
@screen sm {
a.menu-item {
@apply px-3
}
}
#logo {
@apply w-84
}
@screen sm {
#logo {
width: 441px;
}
}
p {
@apply mb-4;
}
strong {
@apply font-semibold;
}
h2>a {
@apply font-black;
}
h1 {
@apply text-center text-2xl font-extrabold leading-tight tracking-tight;
}
h2 {
@apply text-center text-3xl font-black leading-tight tracking-tight mb-4;
}
h3 {
@apply font-bold text-xl tracking-tight mt-4;
}
h4 {
@apply font-bold text-xl tracking-tight mt-3;
}
h5 {
@apply font-bold text-lg tracking-tight mt-2;
}
@screen sm {
h1 {
@apply text-3xl;
}
h2 {
@apply text-5xl;
}
h3 {
@apply text-3xl;
}
h4 {
@apply text-2xl;
}
}
ul, ol {
@apply list-disc mb-4 ml-8;
}
ul.no-bullets {
@apply ml-6;
list-style-type: none;
}
.section {
@apply mt-2 mb-10 text-left tracking-tight font-light text-lg;
}
@screen sm {
.section {
@apply mt-10
}
}
.mc-status:focus {
@apply outline-none
}
.mc-success {
@apply text-green-600;
}
.mc-error {
@apply text-red-600;
}
.button {
@apply rounded-lg w-40 h-10 bg-yellowish font-bold cursor-pointer text-gray-900 inline-block relative text-lg;
top: 1px;
}
.highlight {
@apply px-2 rounded-tl-lg rounded-bl-sm rounded-tr-lg rounded-br-lg;
background-image: linear-gradient(119deg, rgb(255, 255, 255), rgb(255, 246, 151) 10.5%, #fdf59d 85.29%, #ffffff);
}
.field {
@apply font-semibold
}
.small-hr {
border-top-width: 3px;
margin: auto;
width: 40%;
}
a.anchor {
@apply block relative;
top: -65px;
}
pre[class*="language-"]:before, pre[class*="language-"]:after {
content: normal;
}
pre[class*="language-"], :not(pre) > code[class*="language-"], pre[class*="language-"] {
line-height: 21px;
font-size: 14px;
}
code[class*="language"] {
padding-top: 16px;
padding-bottom: 16px;
margin-top: 1em;
margin-bottom: 1em;
}
pre[class*="language-"]>code {
background-color: #f6f6f6;
box-shadow: none;
background-image: none;
}
.line-highlight:before, .line-highlight[data-end]:after {
content: normal;
}
pre[data-line] code {
padding-left: 1em;
}
pre .line-highlight {
margin-top: 16px;
background-image: none;
background-color: rgba(0, 255, 0, 0.12);
}
.token.operator, .token.entity, .token.url, .token.variable {
color: #ff8000;
background: none;
}
@tailwind utilities;