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/lists.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/lists.sass')
-rw-r--r-- | sass/lists.sass | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/sass/lists.sass b/sass/lists.sass new file mode 100644 index 0000000..33e2ae9 --- /dev/null +++ b/sass/lists.sass @@ -0,0 +1,76 @@ +@import settings + +ul + list-style: none + padding-left: 0 + margin-top: 16px !important + + li + position: relative + padding-left: 25px + font-weight: 500 + color: $grey-dark + letter-spacing: $px + +resolution(0, 575) + font-size: 16px + +resolution(576) + font-size: 18px + + &:not(&:last-child) + margin-bottom: 12px + + &:before + position: absolute + left: 10px + content: '' + display: flex + justify-content: center + align-items: center + border-radius: 50% + width: 5px + height: 5px + background-color: $grey-dark + + a + color: $primary + +resolution(0, 575) + text-decoration: none + +.legacy-lts, +.why-contribute, +.image-signatures, +div#rolling-current + ul + li + &:before + top: 50% + transform: translate(-50%, -50%) + +.nightly-builds, +.start, +.lts + ul + li + &:before + transform: translate(-50%, -50%) + +resolution(992) + top: 50% + +resolution(576, 991) + top: 10px + +resolution(0, 575) + top: 8px + +.guidelines + ul + li + &:before + top: 10px + transform: translateX(-50%) + +.links-columns + ul + li + padding-left: 0 + + &:before + content: none |