diff options
| author | Romain Gonçalves <me@rgoncalves.se> | 2021-01-20 14:13:50 +0100 | 
|---|---|---|
| committer | Romain Gonçalves <me@rgoncalves.se> | 2021-01-20 14:13:50 +0100 | 
| commit | 170ed8723e889c54b0d6ee9ed2cc9fc7986e7caa (patch) | |
| tree | dce0ff45e87c3585941c567ecf84c395ba10b1f1 | |
| parent | 686b024961bb3c9b77a68e373e6700b8e702dc61 (diff) | |
| download | website-170ed8723e889c54b0d6ee9ed2cc9fc7986e7caa.tar.gz | |
Min. stylesheet for orgmode
| -rw-r--r-- | sass/style/org.sass | 29 | 
1 files changed, 29 insertions, 0 deletions
| diff --git a/sass/style/org.sass b/sass/style/org.sass new file mode 100644 index 0000000..67600e2 --- /dev/null +++ b/sass/style/org.sass @@ -0,0 +1,29 @@ + +/* sass ~~ /style/org.css */ + + +@import "common.sass" + +/* + * html native elements + */ + +h1,h2,h3  +	line-height: 1.2  + +img  +	max-width: 750px  +	border-radius: 10px  + +pre  +	font-family: monospace,monospace  + +pre.src +	background-color: $grey +	color: $black +	border-left: solid $grey_1 .3em + +div +	@for $i from 1 through 6 +		&.outline-#{$i} +			margin-left: 2em |