-
Notifications
You must be signed in to change notification settings - Fork 8
/
styles.css
96 lines (81 loc) · 1.6 KB
/
styles.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
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
a:not(.unstyled) {
@apply transition duration-300 hover:border-sswRed hover:text-sswRed underline decoration-ssw-gray-light decoration-1;
}
html,
body {
@apply scroll-smooth;
/* see https://github.com/SSWConsulting/SSW.Website/issues/1147 */
font-size: 18px;
}
h2.callToAction {
@apply mx-auto mb-4 mt-4 w-fit pb-5 pt-15 text-4xl;
}
h1,
h2,
h3,
h4,
h5 {
@apply font-sans leading-tight;
}
h1 {
@apply my-4 pb-5 pt-15 text-4xl;
}
h2 {
@apply mb-2.5 mt-10 text-3xl;
}
h3 {
@apply mb-0.5 mt-2.5 text-2xl;
}
h1 + h2 {
@apply !mt-5;
}
small {
@apply text-xs;
}
figure {
@apply mb-4;
}
}
@layer components {
.icon::before {
@apply inline-block;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
}
a.done,
button.done {
@apply items-center justify-center rounded border-none bg-sswRed px-4 py-3 align-middle text-sm font-normal uppercase leading-[18px] text-white no-underline !outline-sswRed hover:!bg-sswDarkRed hover:!text-white;
}
a:hover {
@apply decoration-sswRed;
}
.m-icon {
@apply mr-1;
}
.customTable table,
.customTable th,
.customTable td {
border: 1px solid;
padding: 8px;
}
.customTable li {
list-style-type: square;
}
@media print {
#chatbase-message-bubbles,
#chatbase-bubble-button {
display: none !important;
}
.no-print,
.no-print * {
display: none !important;
}
.pagebreak {
page-break-before: always;
}
}
}