diff options
| author | Ahmed Abdelhalim <[email protected]> | 2021-05-04 21:17:15 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2021-05-04 21:17:15 +0200 |
| commit | 58bb8726dfa0bb20ab3e06662f9a62d08acdf2e3 (patch) | |
| tree | e333bf781a74794c7f4aa766f4bfc506658720ea /app/base.styl | |
| parent | 2fcb2b8db70ce8c3bc34c01f6666048337fe244a (diff) | |
Style the summary section
Diffstat (limited to 'app/base.styl')
| -rw-r--r-- | app/base.styl | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/app/base.styl b/app/base.styl index 56f20f6..98a18a6 100644 --- a/app/base.styl +++ b/app/base.styl @@ -1,13 +1,23 @@ baseColor = #000000 backgroundColor = #FFFFFF -secondaryColor = #FB4485 +secondaryColor = #DB0A16 +// secondaryColor = #FECE2F body { font-family: "PT Sans" color: baseColor - margin: 1cm 1.5cm + max-width: 1024px + min-width: 375px + margin: 0 auto !important + float: none !important } +main { + margin-left: 1cm + margin-right: 1cm +} + + a:link, a:visited, a:hover, a:active { text-decoration: none color: inherit @@ -41,3 +51,11 @@ header { .web { display: none } } } + +.summary { + h1 { display: none } + p { + text-align: justify + margin-top: 2.5em + } +} |
