-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault-styles-tecnate.css
More file actions
67 lines (55 loc) · 1.44 KB
/
default-styles-tecnate.css
File metadata and controls
67 lines (55 loc) · 1.44 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
/*
Tecnate Web Solutions - Default Style
COLORS
Define color variables with RGB syntax,
which allows you to set opacity in the same way you do with RGBA.
Set the color & opacity of a selector to the color variable, followed by the alpha channel. For example:
.selector {
background-color: rgba(var(--silver-chalice), 0.25);
}
FONTS
Define the base-font and calculate others based on Octatonic scale.
*/
:root {
--indigo-dye: 3, 60, 84;
--silver-chalice: 173, 173, 173;
--middle-red: 255, 143, 112;
--base-font-size: 16px;
--base-line-height: 1.5;
}
h1 {
font-size: calc(var(--base-font-size) * 2.0625);
line-height: calc(
(var(--base-font-size) * 2.0625) * var(--base-line-height)
);
}
h2 {
font-size: calc(var(--base-font-size) * 1.5417);
line-height: calc(
(var(--base-font-size) * 1.5417) * var(--base-line-height)
);
}
h3 {
font-size: calc(var(--base-font-size) * 1.2917);
line-height: calc(
(var(--base-font-size) * 1.2917) * var(--base-line-height)
);
}
h4 {
font-size: calc(var(--base-font-size) * 1.1458);
line-height: calc(
(var(--base-font-size) * 1.1458) * var(--base-line-height)
);
}
h5 {
font-size: calc(var(--base-font-size) * 1.0625);
line-height: calc(
(var(--base-font-size) * 1.0625) * var(--base-line-height)
);
}
h6,
p,
blockquote {
font-size: var(--base-font-size);
line-height: var(--base-line-height);
}