-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.scss
executable file
·88 lines (70 loc) · 1.09 KB
/
main.scss
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
.autoform-array-item-body > .card {
border: 0 !important;
}
.no-wrap {
white-space: nowrap;
}
[data-required] label::after {content: '*';}
form ul,
form ul li,
form .card {
border: 0 !important;
}
body {
overflow-y: hidden;
}
form ul li {
padding: 0 !important;
}
.d-unavailable {
opacity: 0.65;
pointer-events: none;
}
.clickable {
cursor: pointer;
}
@font-face {
font-display: auto;
font-family: 'Semikolon';
src: url('/SemikolonPlus-Regular.ttf') format('truetype');
}
p,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
button,
label,
a {
font-family: 'Semikolon', Arial, 'sans-serif';
}
@media print {
// force no bg on target when printing
.bg-print-none {
background: none !important;
}
body,
main,
.mainwrapper,
.contentwrapper {
background: none !important;
overflow: visible;
}
// use as our page break anchor
.page-break-before {
page-break-before: always !important;
}
.page-break-avoid {
page-break-inside: avoid !important;
}
hr {
border: solid 2px !important;
}
.border-print {
border: solid 2px !important;
}
}