File tree Expand file tree Collapse file tree 2 files changed +59
-29
lines changed Expand file tree Collapse file tree 2 files changed +59
-29
lines changed Original file line number Diff line number Diff line change 1
1
/* CSS custom properties replacing Sass variables */
2
2
: root {
3
- }
4
-
5
- body {
6
3
font-family : -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted" ,
7
4
"Segoe UI" , "Liberation Sans" , sans-serif;
8
5
}
9
6
10
- /* Change header fonts */
11
- .md-typeset h1 ,
12
- .md-typeset h2 ,
13
- .md-typeset h3 ,
14
- .md-typeset h4 ,
15
- .md-typeset h5 ,
16
- .md-typeset h6 {
17
- font-weight : 700 ;
18
- font-style : normal;
19
- letter-spacing : -0.5px ;
20
- color : # 222 ;
7
+ .md-content__inner {
8
+ margin : 0 ;
9
+ padding : 0 ;
10
+ padding-bottom : 3rem ;
11
+
21
12
}
22
13
23
- .md-typeset h1 {
24
- font-size : 160% ;
25
- line-height : 130% ;
14
+ .md-typeset {
15
+ p ,
16
+ ol ,
17
+ ul ,
18
+ h1 ,
19
+ h2 ,
20
+ h3 ,
21
+ h4 ,
22
+ h5 ,
23
+ h6 {
24
+ padding : 0 20px ;
25
+ color : black;
26
+ }
27
+
28
+ /* Change header fonts */
29
+ h1 , h2 , h3 , h4 , h5 , h6 {
30
+ font-weight : 700 ;
31
+ font-style : normal;
32
+ letter-spacing : -0.5px ;
33
+ line-height : 140% ;
34
+ }
35
+
36
+ h1 {
37
+ font-size : 1.2rem ;
38
+ margin : 0.5em 0 1em 0 ;
39
+ }
26
40
27
- margin : 0 em 0 1 em 0 ;
28
- @media screen and ( max-width : var ( --on-palm )) {
29
- margin-top : 1.5em ;
41
+ h2 {
42
+ font-size : 1 rem ;
43
+ margin : 1.5em 0 1.3 em 0 ;
30
44
}
45
+
46
+ h3 {
47
+ font-size : 0.9rem ;
48
+ margin : 2em 0 1.1em 0 ;
49
+ }
50
+
51
+ p , ul , ol , pre {
52
+ font-size : 17px ;
53
+ }
54
+
55
+ pre {
56
+ padding-left : 20px ;
57
+ padding-right : 20px ;
58
+ line-height : 140% ;
59
+ }
60
+
31
61
}
32
62
33
- .md-typeset h2 {
34
- font-size : 130% ;
35
- margin : 1.5em 0 1em 0 ;
36
- line-height : 100% ;
63
+ /* Target only the page title (first H1 in the article) */
64
+ .md-content__inner .md-typeset h1 : first-of-type {
65
+ padding-left : 20px ;
37
66
}
38
67
39
- .md-typeset h3 {
40
- font-size : 110% ;
41
- margin : 2em 0 1em 0 ;
42
- line-height : 100% ;
68
+ .md-content__inner .md-typeset blockquote {
69
+ background-color : # ffd ;
70
+ border-left : 0 ;
71
+ border-radius : 5px ;
72
+ padding : 1px 0 ;
43
73
}
Original file line number Diff line number Diff line change 14
14
create extension pgcrypto;
15
15
```
16
16
17
- > ⚠️ ` create extension ` is non-transactional, so don’t wrap this file in
17
+ > ⚠️ ` create extension ` is non-transactional, so don’t wrap this in
18
18
> ` BEGIN/COMMIT ` .
19
19
20
20
## 🛠️ Building an Extension from Source
You can’t perform that action at this time.
0 commit comments