-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathapp.css
More file actions
147 lines (119 loc) · 2.11 KB
/
app.css
File metadata and controls
147 lines (119 loc) · 2.11 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/* app global css */
@media only screen and (min-width: 2090px) and (min-height: 1039px) {
.scale-container {
overflow: hidden;
}
}
:root {
--fgcolor: #efefef;
--bgcolor: #ddd;
--white: #efefef;
}
body {
background-color: var(--bgcolor);
color: #333;
font-family: "Inter", sans-serif;
font-size: 14pt;
}
#main-block {
max-width: 1044px;
min-height: 500px;
position: relative;
}
#preview-block {
max-width: 600px;
}
#header {
background-color: #f8f8f8;
}
#footer {
background-color: #b3c5db;
}
a:not(.q-btn) {
color: var(--q-primary);
text-decoration: none
}
a:not(.q-btn):hover {
text-decoration: underline
}
.elevated {
box-shadow: 0px 8px 22px -6px rgba(24, 39, 75, 0.12), 0px 14px 64px -4px rgba(24, 39, 75, 0.12);
}
.floating-preview-button {
position: absolute;
top: 16px;
right: 16px;
}
.rounded-borders {
border-radius: 10px;
}
.bg-formcard {
background-color: #f8f8f8;
border-radius: 5px;
}
h1 {
font-size: 32pt;
font-weight: bold;
}
h2 {
font-size: 26pt;
}
h3 {
font-size: 22pt;
}
h4 {
font-size: 20pt;
}
h1,
h2,
h3,
h4 {
line-height: normal;
margin: 1rem 0rem;
}
.q-drawer {
background-color: transparent !important;
}
@font-face {
font-family: "Inter";
font-weight: 400;
src: url("./fonts/Inter/Inter-Regular.ttf");
}
@font-face {
font-family: "Inter";
font-weight: bold;
src: url("./fonts/Inter/Inter-Bold.ttf");
}
@font-face {
font-family: "Fira Code";
src: url("./fonts/Fira_Code/FiraCode-Regular.ttf");
}
p,
body {
font-family: "Inter", sans-serif;
}
.cffstr {
font-family: "Fira Code", monospace;
font-size: 11pt;
}
.red-border {
border-color: #c10015;
}
.skip-to-main-content-link {
position: absolute;
left: -9999px;
z-index: 999;
padding: 1em;
background-color: black;
color: white;
opacity: 0;
}
.skip-to-main-content-link:focus {
left: 50%;
transform: translateX(-50%);
opacity: 1;
}
.link-over-primary {
color: white !important;
text-decoration: underline !important;
}