forked from cswendrowski/FoundryVTT-Custom-CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-css.css
66 lines (58 loc) · 1.27 KB
/
custom-css.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
.customCssSettings {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
h2 {
margin: .2em 0 0 0;
font-size: 1.25em;
}
.notes {
flex-basis: unset;
padding: 0;
}
.stylesheet-editor {
width: 100%;
min-height: 10px;
}
.CodeMirror {
height: 100%;
width: 100%;
}
textarea {
font-family: 'Courier New', Courier, monospace;
height: 100%;
width: 100%;
}
button {
margin-top: .5em;
}
#ccss-top {
padding: 0;
margin: 0;
height: 100%;
}
#ccss-bottom {
height: 75%;
}
#ccss-sep {
cursor: row-resize;
width: 100%;
height: 10px;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: var(--color-pf-primary);
mask-image: linear-gradient( to right,
transparent,
transparent calc( 50% - 25px),
black calc( 50% - 25px),
black calc( 50% + 25px),
transparent calc( 50% + 25px),
transparent );
mask-size: 100% 0.3rem;
mask-position: 0% 0%;
mask-repeat: no-repeat;
margin-bottom: -0.3rem;
}
}