-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.sass
More file actions
59 lines (46 loc) · 1.06 KB
/
style.sass
File metadata and controls
59 lines (46 loc) · 1.06 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
// using indented SASS style (https://sass-lang.com/)
@import fonts
@import pygments
@import shared-variables
html
background: $mineShaft
font-size: 140%
body
font-family: $fontMolengo
// https://meyerweb.com/eric/thoughts/2018/06/28/what-is-the-css-ch-unit/
max-width: 90ch
margin: 0 auto
a
text-decoration: none
&:active
outline: 3px dashed $buddhaGold
code
text-decoration: underline
hr
margin: 1.5em 0 0 0
border: 2px solid $mineShaft
p
font-size: 1.15em
line-height: 1.5em
// justified text with automatic hyphenation
// needs <html lang = "en"> to work properly
// If needed (e.g. different language), use: ­
hyphens: auto
text-align: justify
margin: 1% 0 2% 0
ul
list-style-type: square
table
padding: 4px
margin: 6px
border: none
th
font-size: 1.15rem
font-weight: bold
td, th
background: $tundora
padding: 10px 20px
border-bottom: 2px solid $mineShaft
@import 1_header
@import 2_main
@import 3_footer