-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
67 lines (52 loc) · 783 Bytes
/
styles.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
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
@apply antialiased;
}
html {
/* background-color: #f7f7f2; */
@apply bg-gray-100;
}
h2 {
@apply text-xl mt-6;
@apply font-semibold;
}
blockquote {
@apply border-l border-green-500 p-4 my-2 border-l-4 bg-gray-50 text-sm;
}
blockquote p {
@apply my-0 text-base !important;
}
table {
@apply table-auto;
}
tr {
@apply border-b;
}
td {
@apply px-4;
}
.post h1 {
@apply text-3xl;
@apply font-semibold;
@apply mb-3;
}
.post a {
color: #001665;
}
.post a.title {
@apply text-black;
}
.post p {
@apply my-4;
@apply text-lg;
@apply text-gray-900;
}
/* #logo {
transform: rotate(2deg);
transition: 100ms transform ease-in-out;
}
#logo:hover {
transform: rotate(-1deg);
} */