-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (71 loc) · 1.43 KB
/
styles.css
File metadata and controls
85 lines (71 loc) · 1.43 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
/* Custom styles for Slidev presentation - Rosalía LUX / MOTOMAMI inspired */
body {
background: #fdfdfd;
color: #111;
}
.slidev-layout {
font-family: 'Fira Code', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
/* Gasto / ahorro colors (rojo MOTOMAMI, verde contraste) */
.gasto {
color: #ff0033;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
}
.ahorro {
color: #00b87a;
font-weight: 700;
}
.subtitle {
color: #555;
text-transform: uppercase;
letter-spacing: 0.12em;
font-size: 0.8rem;
}
/* Headings – bold, limpias, con aire editorial */
h1 {
color: #000;
text-transform: uppercase;
letter-spacing: 0.16em;
font-weight: 800;
}
h2 {
color: #111;
text-transform: uppercase;
letter-spacing: 0.12em;
font-weight: 700;
}
h3 {
color: #222;
text-transform: uppercase;
letter-spacing: 0.08em;
font-weight: 600;
}
p,
li {
color: #222;
}
/* Tracklist vibes para listas importantes */
ol.tracklist {
list-style: none;
counter-reset: track;
padding-left: 0;
}
ol.tracklist > li {
counter-increment: track;
text-transform: uppercase;
letter-spacing: 0.16em;
font-weight: 600;
}
ol.tracklist > li::before {
content: counter(track, decimal-leading-zero) ". ";
color: #ff0033;
}
/* Pequeños "credits" como en contraportada de disco */
.credits {
font-size: 0.7rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #777;
}