-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (105 loc) · 2.68 KB
/
Copy pathstyle.css
File metadata and controls
128 lines (105 loc) · 2.68 KB
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
html,
body {
margin: 0;
}
/* ─── Html And Body ──────────────────────────────────────────────────── ✦ ─ */
html {
font-family: "Lotion Regular" !important;
padding: 0;
font-size: 0.5cm;
}
body {
--body-padding: 2rem;
padding: 2rem;
background-color: #dbe1ff;
}
@media screen and (max-width: 600pt) {
html {
font-size: calc(100svw / 45);
}
}
/* ─── Whole Content Container ────────────────────────────────────────── ✦ ─ */
#whole-content-container {
--max-width: calc(min(100svw - 2 * var(--body-padding), 40rem));
display: flex;
flex-direction: column;
gap: 1rem;
max-width: var(--max-width);
margin: auto;
}
/* ─── Justification Button ───────────────────────────────────────────── ✦ ─ */
#justify-button {
width: 17rem;
height: auto;
align-self: flex-end;
}
#justify-button-arrow-shape {
fill: black;
}
#justify-button-arrow-shape:hover {
fill: url(#rainbow);
animation: hue-rotate-loop 0.75s linear infinite;
}
#justify-button-arrow-shape:active {
opacity: 50%;
}
#justify-button-arrow-shape-stroke {
fill: black;
}
#justify-button-arrow-shape:hover #justify-button-arrow-shape-stroke {
fill: rgba(255, 255, 255, 0.2);
}
#justify-button-label {
pointer-events: none;
fill: white;
}
@keyframes hue-rotate-loop {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(-360deg);
}
}
/* ─── Editor ─────────────────────────────────────────────────────────── ✦ ─ */
#editor-container {
--editor-padding: 2rem;
background-color: #ffbce2;
padding: var(--editor-padding);
max-width: 100%;
margin: auto;
border: 2pt solid black;
}
#editor {
--editor-width: calc(var(--max-width) - 2 * var(--editor-padding));
background-color: transparent;
border: transparent;
outline: none !important;
font-size: 1rem;
max-width: var(--editor-width);
width: var(--editor-width);
font-family: "Lotion Regular" !important;
color: black;
line-height: 1.6;
overflow-y: hidden;
resize: none;
}
#help-area {
max-width: var(--max-width);
font-size: 0.7rem;
padding: 0.5rem;
}
code {
padding: 0 0.25rem;
border: 1pt solid black;
background-color: #fff2db;
}
ul {
padding-left: 0.5rem;
}
li {
margin-top: 0.5rem;
list-style-type: "✦";
padding-left: 0.5rem;
line-height: 1.8;
}