blob: 891008b497b05a8377b699b02e6e620f18d6da68 (
plain)
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
|
input[type=text] {
color: var(--text);
background-color: var(--background-dim);
border: none;
border-bottom: 1px dashed var(--text-dim);
border-radius: 0px;
font-size: 1.25rem;
&:focus {
outline: none;
background-color: var(--background-dimmer);
border-bottom: 1px solid var(--background-bright);
}
}
textarea {
color: var(--text);
background-color: var(--background-dim);
resize: vertical;
min-height: 25vh;
font-family: inherit;
border: 2px solid var(--background-dimmer);
&:focus {
outline: none;
border: 2px solid var(--background-bright);
}
}
iframe#preview {
width: var(--pwidth);
margin-top: 1rem;
border: none;
background-color: var(--background-dim);
}
/* MARK: Form Specific */
.main-create {
display: flex;
flex-direction: column;
row-gap: 1rem;
}
#create {
border-color: var(--box-border-alt);
}
#create-form,
#edit-form {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.5rem;
input[type="text"],
textarea {
grid-column: 1 / 3;
}
#submit-create {
grid-column: 1;
}
#submit-draft {
grid-column: 2;
}
#submit-preview {
grid-column: 1 / 3;
}
}
/* MARK: Media */
@media (min-width: 50rem) {
body {
padding-right: var(--left-pad);
}
main {
min-height: 40vh;
&.create {
display: flex;
flex-direction: column;
width: 35rem;
}
&.edit {
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 1rem;
width: 100%;
}
}
section {
display: flex;
flex-direction: column;
max-width: var(--pwidth);
width: 100%;
height: 100%;
}
iframe#preview {
max-width: var(--pwidth);
width: 100%;
height: 100%;
margin-top: 0;
}
}
|