diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-04-15 23:18:09 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-04-15 23:18:09 +0200 |
| commit | f088a6594c15951b85a56129944afa51a62dc765 (patch) | |
| tree | e49f3f8d60d4f78c3e7591d34ff8b15ae673351c /static/global.css | |
| parent | 58f7d52150456713d3132408668a92d0f6f3d084 (diff) | |
Update the config
Diffstat (limited to 'static/global.css')
| -rw-r--r-- | static/global.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/static/global.css b/static/global.css new file mode 100644 index 0000000..5895635 --- /dev/null +++ b/static/global.css @@ -0,0 +1,16 @@ +main { + grid-column: col-start 2 / span 11; +} + +#forum { + display: grid; + font-family : 'ヒラギノ明朝 ProN' , 'Hiragino Mincho ProN' , '游明朝','游明朝体',YuMincho,'Yu Mincho' , 'MS 明朝' , 'MS Mincho' , HiraMinProN-W3 , 'TakaoEx明朝' , TakaoExMincho , 'MotoyaLCedar' , 'Droid Sans Japanese' , serif; + grid-template-columns: repeat(12, [col-start] 1fr); + grid-gap: 20px; + grid-auto-rows: minmax(24px, auto); +} + +body { + background-color: whitesmoke; +} + |