Skip to content

Commit c632ead

Browse files
committed
Create prose color and explicitly define .subquestion
1 parent f59331f commit c632ead

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

quasar.conf.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ module.exports = configure(function () {
9494
accent: '#9C27B0',
9595

9696
formcard: '#efefef',
97+
prose: '#333',
9798

9899
dark: '#333',
99100

src/css/app.css

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -169,28 +169,33 @@ body {
169169
.page-title,
170170
.finish-title {
171171
font-family: "Roboto", sans-serif;
172-
color: #333;
172+
color: var(--q-prose);
173173
font-size: 1.4rem;
174174
font-weight: 400;
175175
margin-top: 10px;
176176
margin-bottom: 60px;
177177
}
178-
.question, .subquestion {
178+
.question {
179179
font-family: "Roboto Condensed", sans-serif;
180-
color: #333;
180+
color: var(--q-prose);
181181
font-size: 1.1rem;
182182
font-weight: 400;
183183
margin-top: 12px;
184184
margin-bottom: 7px;
185185
line-height: normal;
186186
}
187187
.subquestion {
188-
font-size: 0.9rem;
188+
font-family: "Roboto Condensed", sans-serif;
189+
color: var(--q-prose);
190+
font-size: 1.1rem;
191+
font-weight: 400;
189192
margin: 0px;
193+
line-height: normal;
194+
font-size: 0.9rem;
190195
}
191196
.finish-paragraph {
192197
font-family: "Roboto Condensed", sans-serif;
193-
color: #333;
198+
color: var(--q-prose);
194199
font-size: 1rem;
195200
font-weight: 400;
196201
line-height: 1.7;

0 commit comments

Comments
 (0)