This repository has been archived by the owner on Apr 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
156 lines (125 loc) Β· 2.31 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
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
@apply bg-gray-100;
@apply text-gray-800;
overflow-x: hidden;
}
body.popup-open {
overflow-y: hidden;
}
a {
@apply text-primary;
}
a:hover {
cursor: pointer;
@apply text-primary-dark;
}
.cta > a {
@apply text-white;
}
.cta:hover > a {
@apply text-white;
}
.editor blockquote {
@apply border-l-4;
@apply border-gray-800;
@apply pl-10;
@apply pr-4;
@apply py-8;
@apply bg-gray-100;
@apply italic;
@apply text-gray-800;
@apply text-xl;
}
.editor ul {
@apply list-disc;
@apply pl-8;
}
.editor ol {
@apply list-decimal;
@apply pl-8;
}
.editor h1,
.editor h2,
.editor h3 {
@apply font-bold;
@apply mb-4;
}
.editor h1 {
@apply text-5xl;
}
.editor h2 {
@apply text-3xl;
}
.editor h3 {
@apply text-xl;
}
.progress-bar {
top: 0.5em;
z-index: 2;
}
.progress-bar .progress {
background: rgb(198,246,213);
background: linear-gradient(90deg, rgba(198,246,213,1) 0%, rgba(47,133,90,1) 100%);
transition: width 0.8s;
}
.words-written {
transition: opacity 0.6s;
}
.words-written:hover {
@apply opacity-100;
}
.blocktype-option:hover {
@apply pl-6;
}
.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
@apply bg-primary !important;
}
.DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
@apply bg-pink-100 !important;
}
.DayPicker-Day--selected:not(.DayPicker-Day--start):not(.DayPicker-Day--end):not(.DayPicker-Day--outside) {
@apply bg-pink-100 !important;
@apply text-secondary;
}
.DayPicker-Day {
@apply rounded !important;
}
.DayPicker-Day:focus {
outline: none;
}
.DayPicker-Day--entry:not(.DayPicker-Day--outside) {
@apply bg-green-200;
@apply text-green-900;
font-weight: 700;
}
.DayPicker-Day--today,
.DayPicker-Day--entry.DayPicker-Day--today {
@apply text-primary !important;
}
.popup {
background-color: rgba(0, 0, 0, 0.3);
cursor: default;
z-index: 2;
}
.icon-spin {
animation: icon-spin 2s infinite linear;
}
@-webkit-keyframes icon-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
@keyframes icon-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}