forked from pelican-themes/papyrus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.css
More file actions
47 lines (38 loc) · 698 Bytes
/
tailwind.css
File metadata and controls
47 lines (38 loc) · 698 Bytes
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
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
/* Disable mobile browser tap background highlight */
-webkit-tap-highlight-color: transparent;
}
#toc ul li {
/* Table of contents styling */
list-style-type: disc;
}
.image-thumbnail {
@apply sm:w-1/6 shadow-md;
}
.image-small {
@apply sm:w-1/3 shadow-md;
}
.image-medium {
@apply sm:w-1/2 shadow-md;
}
.image-large {
@apply w-full h-full shadow-md;
}
.image-left {
@apply sm:float-left mr-5;
}
.image-right {
@apply sm:float-right sm:ml-5;
}
.image-center {
@apply mx-auto;
}
p a {
@apply text-slate-600 dark:text-slate-400 underline;
}
p a {
@layer font-normal;
}