forked from CodingCatDev/codingcat.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
44 lines (40 loc) · 852 Bytes
/
app.css
File metadata and controls
44 lines (40 loc) · 852 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
::-webkit-scrollbar {
@apply h-2;
}
html,
body {
@apply h-full overflow-hidden;
}
/* Page Styles */
/* Use these to define common page styles. */
.page-container {
@apply container mx-auto page-padding space-y-10;
}
.page-container-wide {
@apply w-full max-w-7xl mx-auto space-y-10;
}
.page-container-aside {
@apply w-full max-w-4xl mx-auto space-y-10;
}
.page-padding {
@apply p-4 md:p-10;
}
.page-section {
@apply space-y-4;
}
/* Label Text Override */
label:not(.unstyled) span:first-of-type:not(.unstyled):is(:not(.input-chip *)) {
@apply text-surface-700-200-token text-sm;
}
/* Heading Permalinks */
.permalink {
@apply w-0 invisible inline-block text-base pl-2 -translate-y-1;
}
h1:hover .permalink,
h2:hover .permalink,
h3:hover .permalink,
h4:hover .permalink,
h5:hover .permalink,
h6:hover .permalink {
@apply visible w-auto;
}