-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
124 lines (107 loc) · 2.42 KB
/
style.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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@import url("observablehq:default.css");
@import url("observablehq:theme-air.css");
:root {
--sans-serif: "neue-haas-grotesk-display", sans-serif;
--serif: merriweather, serif;
--theme-background: #f5f5f5;
--theme-background-alt: #efefef;
--theme-foreground-muted: #767676;
--theme-background-faint: #dcdcdc;
--theme-foreground-focus: #3f62aa;
--theme-foreground-cards: #C0C6CD;
--white: #f5f5f5;
--blue: #3f62aa;
--red: #ff3e3e;
/*
--theme-background: #f3f3f3;
--theme-background-alt: #f3f3f3;
--theme-foreground-alt: #007EBB;
--theme-foreground-muted: #505050;
--theme-foreground-faint: #f3f3f3;
--theme-foreground-fainter: #f3f3f3;
--theme-foreground-faintest: #f3f3f3;
--theme-foreground-focus: #f3f3f3; */
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--sans-serif);
font-weight: 600;
}
h1 { font-size: 3rem; }
@media (min-width: 640px) {
h1 {
font-size: 4.2rem;
}
}
h2, h1 + h2 {
margin-top: 3rem;
margin-bottom: 1rem;
font-size: 2.1rem;
font-weight: 400;
color: var(--theme-foreground);
font-style: normal;
}
main p, main li {
font-size: 1rem;
font-weight: 300;
line-height: 1.8rem;
}
li { font-weight: 500; }
.card {
border-color: var(--theme-background-faint);
}
.card h1, .card h2 { font-weight: 600;}
.card h3, label { font-weight: 500;}
.card h1 { font-size: 1.5rem;}
.card h2 {
font-size: 1.2rem;
font-weight: 600;
color: var(--theme-foreground-alt);
}
.card h3 { font-size: 1rem;}
.card h4 { font-size: .85rem;}
.halo {
-webkit-font-smoothing: antialiased;
text-shadow:
.5px .5px .5px #fff,
-.5px -.5px .5px #fff,
.5px -.5px .5px #fff,
-.5px .5px .5px #fff,
.5px .5px .5px #fff,
.5px .5px 1px #fff,
-.5px -.5px 1px #fff,
.5px -.5px 1px #fff,
-.5px .5px 1px #fff,
.5px .5px 1px #fff,
.5px .5px 3px #ffffff33,
-.5px -.5px 3px #ffffff33,
.5px -.5px 3px #ffffff33,
-.5px .5px 3px #ffffff33,
.5px .5px 3px #ffffff33;
}
#observablehq-toc nav div {
display: none;
}
.note {
border-left: none;
border-radius: .3rem;
font-size:1rem;
color: var(--theme-foreground-muted);
}
.note::before{
content:"📓 Nota";
margin-bottom:.5rem;
}
pre {
box-shadow: inset 0 0 .5rem rgba(0,0,0,0.1);
}
.observablehq-pre-container::after {
background:none;
}
#observablehq-footer nav a {
background-color: white;
border: none;
box-shadow: 0 0 .5rem rgba(0,0,0,0.1)
}
.observablehq-pre-container {
margin: 1rem -1rem 1rem 0rem;
}