-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
130 lines (100 loc) · 1.9 KB
/
Copy pathinput.css
File metadata and controls
130 lines (100 loc) · 1.9 KB
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
@tailwind base;
@tailwind components;
@tailwind utilities;
body > header {
@apply mx-auto flex max-w-7xl items-center justify-between p-6 lg:px-8;
}
body > header > a {
@apply font-heading text-2xl font-bold;
}
body > header ul {
@apply justify-end flex gap-x-4;
}
body > header ul a {
@apply text-lg font-heading;
}
main {
@apply mx-auto max-w-7xl p-6 lg:px-8;
}
section {
@apply mx-auto max-w-7xl p-6 lg:px-8 flex flex-wrap justify-center;
}
section header {
@apply text-center w-full py-8;
}
section header h1 {
@apply text-3xl font-heading;
}
section header h2 {
@apply text-3xl font-heading;
}
section aside {
@apply w-full md:w-1/3;
}
article {
@apply max-w-prose;
}
article aside {
@apply md:-mr-72 md:w-64 md:float-right inline md:block italic text-slate-700;
}
article p:first-of-type {
@apply text-lg;
}
article h1 {
@apply text-4xl py-4 font-heading;
}
article h2 {
@apply text-3xl py-3 font-heading;
}
article h3 {
@apply text-2xl py-2 font-heading;
}
article a {
@apply text-blue-600 underline;
}
article p {
@apply pb-2;
}
article ul {
@apply list-disc list-outside text-lg;
}
article ol {
@apply list-decimal list-outside text-lg;
}
article ol li,
article ul li {
@apply pb-2;
}
footer {
@apply mx-auto flex max-w-7xl items-center justify-between p-6 mt-4 lg:px-8 font-heading;
}
footer ul {
@apply items-center justify-between flex gap-x-4 w-full;
}
table {
@apply w-full my-4;
}
table caption {
@apply font-heading my-4 text-left font-bold text-lg border-b border-b-slate-700;
}
table th {
@apply text-left font-heading;
}
form label {
@apply block font-heading pt-2;
}
form input,
form textarea {
@apply block border border-slate-700 rounded p-2 my-2;
}
form input[type="text"],
textarea {
@apply w-full;
}
button,
form input[type="submit"] {
@apply bg-blue-600 text-white font-heading py-1 border-0;
}
button {
@apply px-2 rounded;
}