-
Notifications
You must be signed in to change notification settings - Fork 687
/
tailwind.css
142 lines (119 loc) · 1.95 KB
/
tailwind.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
@tailwind base;
@tailwind components;
@tailwind utilities;
main blockquote {
border-left: 4px solid #e8e8e8;
padding-left: 15px;
color: #e2b215;
font-size: 18px;
letter-spacing: -1px;
font-style: italic;
}
main hr {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid rgba(0, 0, 0, .1);
}
main p {
margin-top: 0;
margin-bottom: 1.3rem;
}
main .tutorial a {
color: #007BE4;
}
main a {
color: #007BE4;
text-decoration: underline;
}
main .tutorial a:hover {
color: #e2b215;
text-decoration: underline;
}
main pre {
width: 92vw;
overflow-x: scroll;
}
@media only screen and (min-width: 768px) {
main pre {
width: 100%;
}
}
main code {
margin-bottom: 15px;
background-color: #eee;
padding: 2.5px 3px;
font-size: 14px;
border: 1px solid #e0e0e0;
border-radius: 3px;
overflow-x: scroll;
}
main h1 {
font-size: 3rem;
font-weight: 600;
}
main h2 {
font-size: 2.2rem;
font-weight: 600;
margin-top: 24px;
}
main h3 {
font-size: 1.7rem;
font-weight: 600;
margin-top: 23px;
}
main h4 {
font-size: 1.4rem;
font-weight: 600;
margin-top: 22px;
}
main h5 {
font-size: 1.2rem;
font-weight: 600;
margin-top: 21px;
}
main h6 {
font-size: 1rem;
font-weight: 600;
margin-top: 20px;
}
main ol {
list-style: number;
padding-left: 30px;
margin-bottom: 1.3rem;
}
main ul {
list-style: square;
padding-left: 30px;
margin-bottom: 1.3rem;
}
main table {
border-collapse: collapse;
width: 100%;
}
main table td,
main table th {
border: 1px solid #ddd;
padding: 10px;
}
main table tr:nth-child(even) {
background-color: #f2f2f2;
}
main table tr:hover {
background-color: #dfe6ed;
}
main table th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #c4d4e3;
color: black;
}
main kbd {
padding: 0.15rem 0.35rem;
font-size: 87.5%;
color: #fff;
margin: 0 2px 0 2px;
background-color: #212529;
border-radius: 0.2rem;
}