diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-04-25 12:21:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-25 12:21:36 +0200 |
commit | e2e5f3a9ae0286a9322c4942028193133364af1a (patch) | |
tree | c1842955aa05f100ea8083420429e5c46a46a7c0 /sass/main.sass | |
parent | 32863d35742190bf12ca1ca066907f337292a43f (diff) | |
parent | 5c43b9a00bbdabb73e92884a6294b7be3e6101c3 (diff) | |
download | community.vyos.net-e2e5f3a9ae0286a9322c4942028193133364af1a.tar.gz community.vyos.net-e2e5f3a9ae0286a9322c4942028193133364af1a.zip |
Merge pull request #24 from bogdankol/restylisation
Restylе of all pages
Diffstat (limited to 'sass/main.sass')
-rw-r--r-- | sass/main.sass | 196 |
1 files changed, 92 insertions, 104 deletions
diff --git a/sass/main.sass b/sass/main.sass index 4b513cd..5767658 100644 --- a/sass/main.sass +++ b/sass/main.sass @@ -1,104 +1,92 @@ -@import settings.sass
-
-body
- font-family: sans-serif
- margin: 0
- color: $black
-
-h1, h2, h3, h4, h5, p, ul, li
- margin: 0
-
-h1
- font-weight: 800
- font-size: 45px
- line-height: 120%
- letter-spacing: 0.02em
- color: $black
- +resp(sm)
- font-size: 32px
- +resp(esm)
- font-size: 28px
-h2
- font-weight: 800
- font-size: 32px
- line-height: 140%
- +resp(sm)
- font-size: 21px
-p
- font-weight: normal
- line-height: 180%
- font-size: 16px
- color: $black
- +resp(esm)
- font-size: 14px
- @supports (hyphens: auto)
- text-align: justify
- hyphens: auto
-
-pre, code, sample
- white-space: pre-wrap
- hyphens: none
-
-div.container
- max-width: 1340px
- margin: 0 auto
- padding-left: 15px
- padding-right: 15px
- &.small
- max-width: 1000px
-
-#content
- padding-top: 60px
- padding-bottom: 50px
- +resp(sm)
- padding-top: 40px
- padding-bottom: 20px
- +resp(esm)
- padding-top: 30px
- h1
- margin-bottom: 25px
- +resp(esm)
- margin-bottom: 15px
- h2
- margin-top: 25px
- margin-bottom: 20px
- +resp(esm)
- margin-top: 20px
- margin-bottom: 15px
- p
- margin: 15px 0
- +resp(esm)
- margin: 9px 0
- ul
- list-style: none
- +resp(sm)
- padding-left: 25px
- +resp(esm)
- padding-left: 15px
- li
- padding-left: 25px
- margin: 16px 0
- line-height: 150%
- +resp(esm)
- font-size: 14px
- margin: 13px 0
- &:before
- position: absolute
- margin-top: 1px
- margin-left: -25px
- content: url('../img/global/list-element.svg')
- +resp(esm)
- margin-top: 2px
- a
- color: $dark-orange
- &:hover
- text-decoration: none
-
-@import header.sass
-@import front-page/banner.sass
-@import front-page/main-text.sass
-@import front-page/inform-columns.sass
-@import front-page/bottom-text.sass
-@import forms.sass
-@import footer.sass
-@import google-analytics-message.sass
\ No newline at end of file +@import settings.sass +@import header +@import ./front-page/banner +@import front-page/main-text +@import front-page/inform-columns +@import front-page/bottom-text +@import forms +@import footer +@import google-analytics-message +@import front-page/navigation +@import containerCustom +@import front-page/canvas +@import ./get-page/main +@import content-div +@import ./contribute-page/main +@import ./nightly-builds-page/main +@import ./contributor-subs-page/main +@import lists +@import footnotes + +body + font-family: $r + margin: 0 + color: $black + +h1, h1,h3, h4, h5, h6 + font-family: $a + +h1, h2, h3, h4, h5, p, ul, li + margin: 0 + +h1 + line-height: 120% + letter-spacing: $em + color: $black + +resolution(992) + font-size: 48px + +resolution(575, 991) + font-size: 36px + +resolution(0, 575) + font-size: 28px + +h2 + font-weight: 800 + font-size: 32px + line-height: 140% + +resolution(0, 991) + font-size: 21px + +p + font-weight: normal + line-height: 180% + font-size: 16px + color: $black + +resolution(576) + font-size: 18px + +resolution(0, 575) + font-size: 16px + @supports (hyphens: auto) + hyphens: auto + +pre + white-space: pre-wrap + + code, + sample + hyphens: none + line-height: 1.7 + word-wrap: break-word + padding: 4px 6px + background-color: $grey-light2 + border-radius: 4px + border: 1px solid $grey-light + +resolution(576) + font-size: 16px + +resolution(0, 575) + font-size: 14px + +p + code, + sample + hyphens: none + line-height: 1.7 + word-wrap: break-word + padding: 4px 6px + background-color: $grey-light2 + border-radius: 4px + border: 1px solid $grey-light + +resolution(576) + font-size: 14px + +resolution(0, 575) + font-size: 13px |