-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_settings.css
36 lines (33 loc) · 1.79 KB
/
style_settings.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
:root {
/*
Fonts
For now, any fonts used must be from: https://fonts.google.com/.
*/
--header-font: "Fredoka One"; /* The font of the title and task counter */
--username-font: "Nunito"; /* The font of the usernames, when username grouping is enabled */
--body-font: "Nunito"; /* The font of the task items */
/*
Colors
Must be a color name, hex code (with #) or rgba(0-255, 0-255, 0-255, 0-1) color.
Examples: white, black, #f3b403, rgba(0, 0, 0, 0.5), rgba(244, 120, 0, 0.2)
*/
--overlay-background: rgba(0, 0, 0, 0.5); /* The background of the full overlay */
--header-text-color: white; /* The text color of the title and task counter */
--header-background-color: rgba(0, 0, 0, 0.9); /* The background of the title and task counter box */
--task-list-background-color: rgba(0, 0, 0, 0.8); /* The background of the list of tasks */
--task-username-color: white; /* The task usernames, when username grouping is enabled */
--task-item-text-color: white; /* The text color of the task items */
--task-item-background-color: rgba(0, 0, 0, 0.8); /* The background color of each task item */
/*
Font sizes
Must be a number followed by "px".
Examples: 16px, 20px, 25px.
*/
--title-font-size: 30px; /* The size of the title */
--counter-font-size: 30px; /* The size of the task counter text */
--task-username-font-size: 25px; /* The size of usernames, when username grouping is enabled. */
--task-item-font-size: 20px; /* The size of each task item */
--error-font-size: 25px; /* The size of any displayed errors (like login failures) */
/* ==================== */
--header-lines: 1; /* The number of lines in the title text. This is automatically set by the title in settings.js! */
}