-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.css
More file actions
80 lines (66 loc) · 1.27 KB
/
config.css
File metadata and controls
80 lines (66 loc) · 1.27 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
/* ================================== *
* Config CSS RodWeb.dev *
* 02/04/2026 *
* C'est ici qu'on personnalise l'app *
* ================================== *
*/
/* --------------- *
* Import de fonts *
* @font-face *
* --------------- *
*/
/* ------------------------ *
* Définition des variables *
* ------------------------ *
*/
:root {
/* Couleurs */
--primary: ;
--secondary: ;
--light-1: ;
--light-2: ;
--light-3: ;
--dark-3: ;
--dark-2: ;
--dark-3: ;
--link: ;
--border: ;
--success: ;
--success-contrast: ;
--warning: ;
--warning-contrast: ;
--error: ;
--error-contrast: ;
/* Fonts */
--headline: ;
--text: ;
--citation: ;
--code: ;
--other: ;
/* Responsive */
--base: clamp(14px, 1.3dvw, 20px);
--ratio: 1;
--width: 100%;
--space: 2;
}
@media screen and (min-width:768px) {
:root {
--ratio: 1.1;
--width: 90%;
--space: 2.2;
}
}
@media screen and (min-width:1200px) {
:root {
--ratio: 1.2;
--width: 80%;
--space: 2.4
}
}
@media screen and (min-width:1440px) {
:root {
--ratio: 1.3;
--width: 1200px;
--space: 2.6;
}
}