docula 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ /*!
2
+ Theme: Dracula
3
+ Author: Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula)
4
+ License: ~ MIT (or more permissive) [via base16-schemes-source]
5
+ Maintainer: @highlightjs/core-team
6
+ Version: 2021.09.0
7
+ */pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#e9e9f4;background:#282936}.hljs ::selection,.hljs::selection{background-color:#4d4f68;color:#e9e9f4}.hljs-comment{color:#626483}.hljs-tag{color:#62d6e8}.hljs-operator,.hljs-punctuation,.hljs-subst{color:#e9e9f4}.hljs-operator{opacity:.7}.hljs-bullet,.hljs-deletion,.hljs-name,.hljs-selector-tag,.hljs-template-variable,.hljs-variable{color:#ea51b2}.hljs-attr,.hljs-link,.hljs-literal,.hljs-number,.hljs-symbol,.hljs-variable.constant_{color:#b45bcf}.hljs-class .hljs-title,.hljs-title,.hljs-title.class_{color:#00f769}.hljs-strong{font-weight:700;color:#00f769}.hljs-addition,.hljs-code,.hljs-string,.hljs-title.class_.inherited__{color:#ebff87}.hljs-built_in,.hljs-doctag,.hljs-keyword.hljs-atrule,.hljs-quote,.hljs-regexp{color:#a1efe4}.hljs-attribute,.hljs-function .hljs-title,.hljs-section,.hljs-title.function_,.ruby .hljs-property{color:#62d6e8}.diff .hljs-meta,.hljs-keyword,.hljs-template-tag,.hljs-type{color:#b45bcf}.hljs-emphasis{color:#b45bcf;font-style:italic}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-meta .hljs-string{color:#00f769}.hljs-meta .hljs-keyword,.hljs-meta-keyword{font-weight:700}
@@ -0,0 +1,256 @@
1
+ .header-logo {
2
+ margin-right: 30px;
3
+ }
4
+
5
+ .home-header {
6
+ position: sticky;
7
+ background-color: var(--home-background);
8
+ border-bottom: 1px solid var(--border);
9
+ }
10
+
11
+ .home-hero {
12
+ padding: 56px 0;
13
+ background-color: var(--home-background)
14
+ }
15
+
16
+ .home-container {
17
+ margin-left: 32px;
18
+ margin-right: 32px;
19
+ color: var(--color-text);
20
+ }
21
+
22
+ .home-title {
23
+ text-align: center;
24
+ margin-bottom: 32px;
25
+ font-size: 30px;
26
+ background: linear-gradient(30deg, var(--color-primary) 40%, var(--color-secondary-dark) 70%);
27
+ background-clip: text;
28
+ -webkit-background-clip: text;
29
+ color: transparent;
30
+ }
31
+
32
+ .home-hero {
33
+ text-align: center;
34
+ }
35
+
36
+ .home-hero img {
37
+ width: 100%;
38
+ max-width: 120px;
39
+ margin-bottom: 36px;
40
+ }
41
+
42
+ .content-container {
43
+ margin: 96px 0;
44
+ }
45
+
46
+ .facepile-container {
47
+ display: flex;
48
+ flex-wrap: wrap;
49
+ justify-content: center;
50
+ }
51
+
52
+ .facepile {
53
+ line-height: 2;
54
+ padding: 0 0 0 25px;
55
+ }
56
+
57
+ .facepile > a {
58
+ display: inline-block;
59
+ margin-left: -25px;
60
+ transition: opacity .3s;
61
+ opacity: .9;
62
+ color: var(--background);
63
+ }
64
+
65
+ .facepile img {
66
+ border-radius: 50%;
67
+ width: calc(30px + 5vw);
68
+ height: calc(30px + 5vw);
69
+ max-width: 60px;
70
+ max-height: 60px;
71
+ margin-bottom: 6px;
72
+ background-color: #ffffff;
73
+ border: 2px solid;
74
+ transition: border .3s;
75
+ object-fit: cover;
76
+ vertical-align: middle;
77
+ display: inline-block;
78
+ }
79
+
80
+
81
+ .facepile > a:hover {
82
+ opacity: 1;
83
+ position: relative;
84
+ z-index: 1;
85
+ }
86
+
87
+ .release {
88
+ overflow: hidden;
89
+ width: 100%;
90
+ line-break: anywhere;
91
+ margin-top: 32px;
92
+ color: var(--color-text);
93
+ }
94
+
95
+ .release-header {
96
+ margin-bottom: 16px;
97
+ }
98
+
99
+ .release-title {
100
+ font-size: 22px;
101
+ color: var(--color-primary);
102
+ font-weight: 700;
103
+ transition: color .3s;
104
+ display: block;
105
+ }
106
+
107
+ .release-title:hover {
108
+ color: var(--color-secondary-dark);
109
+ }
110
+
111
+ .release-date {
112
+ font-size: 12px;
113
+ }
114
+
115
+ .release-btn {
116
+ padding: 12px;
117
+ border-radius: 8px;
118
+ border: 2px solid var(--color-secondary);
119
+ color: var(--color-text);
120
+ }
121
+
122
+ .release-btn span {
123
+ margin-left: 8px;
124
+ font-size: 12px;
125
+ transition: margin-left .3s;
126
+ }
127
+
128
+ .release-btn:hover span {
129
+ margin-left: 16px;
130
+ }
131
+
132
+ .release-body p {
133
+ margin: 8px 0;
134
+ }
135
+
136
+ .release-body pre {
137
+ margin-bottom: 32px;
138
+ }
139
+
140
+ .release-body h1 {
141
+ font-size: 22px;
142
+ margin-bottom: 16px;
143
+ }
144
+
145
+ .release-body h2 {
146
+ font-size: 18px;
147
+ margin-top: 28px;
148
+ margin-bottom: 16px;
149
+ }
150
+
151
+ .release-body ul {
152
+ padding-left: 16px;
153
+ }
154
+
155
+ .release-body ul > li {
156
+ margin-bottom: 12px;
157
+ }
158
+
159
+ .release-body ul > li a {
160
+ text-decoration: underline;
161
+ }
162
+
163
+ @media screen and (min-width: 640px) {
164
+ .home-hero {
165
+ padding: 64px 0;
166
+ }
167
+
168
+ .home-container {
169
+ margin-left: 64px;
170
+ margin-right: 64px;
171
+ }
172
+ }
173
+
174
+
175
+ @media screen and (min-width: 768px) {
176
+ .home-hero {
177
+ padding: 72px 0;
178
+ }
179
+
180
+ .header-logo {
181
+ margin-right: 56px;
182
+ }
183
+
184
+ .home-hero img {
185
+ max-width: 180px;
186
+ }
187
+
188
+ .content-container {
189
+ margin: 96px 0;
190
+ }
191
+
192
+ .versions-container {
193
+ margin: 72px 0;
194
+ }
195
+
196
+ .release {
197
+ margin-bottom: 64px;
198
+ }
199
+ }
200
+ @media screen and (min-width: 992px) {
201
+ .home-container {
202
+ margin-left: auto;
203
+ margin-right: auto;
204
+ max-width: 70%;
205
+ }
206
+
207
+ .home-hero {
208
+ padding: 120px 0;
209
+ }
210
+
211
+ .nav {
212
+ padding-right: 56px;
213
+ width: 100%;
214
+ justify-content: space-between;
215
+ }
216
+
217
+ .header-content {
218
+ height: 72px;
219
+ }
220
+
221
+ .home-hero img {
222
+ max-width: 250px;
223
+ }
224
+
225
+ .home-title {
226
+ margin-bottom: 64px;
227
+ font-size: 48px;
228
+ }
229
+
230
+ .content-container {
231
+ margin: 120px 0;
232
+ }
233
+ }
234
+
235
+ @media screen and (min-width: 1200px) {
236
+ .home-container {
237
+ max-width: 950px;
238
+ }
239
+
240
+ .content-container {
241
+ margin: 160px 0;
242
+ }
243
+
244
+ .versions-container {
245
+ margin: 120px 0;
246
+ }
247
+
248
+ .facepile > a {
249
+ margin-left: -30px;
250
+ }
251
+
252
+ .facepile img {
253
+ max-width: 70px;
254
+ max-height: 70px;
255
+ }
256
+ }