diff options
| author | Zephyrrus <[email protected]> | 2020-06-29 20:02:47 +0300 |
|---|---|---|
| committer | Zephyrrus <[email protected]> | 2020-06-29 20:02:47 +0300 |
| commit | ac037c773ef5f15372c6999445a2efe00034c0c0 (patch) | |
| tree | 94ff8cfad575421add06834100a2343eba6a3f73 /src/site/assets/styles/style.scss | |
| parent | misc: remove patreon. sorry. (diff) | |
| download | host.fuwn.me-ac037c773ef5f15372c6999445a2efe00034c0c0.tar.xz host.fuwn.me-ac037c773ef5f15372c6999445a2efe00034c0c0.zip | |
fix: Remove hero and hero body and use sections and containers instead
Hero is meant to be used as a full-width banner to showcare or present somethign, not to contain the entire content of the webpage
Diffstat (limited to 'src/site/assets/styles/style.scss')
| -rw-r--r-- | src/site/assets/styles/style.scss | 62 |
1 files changed, 61 insertions, 1 deletions
diff --git a/src/site/assets/styles/style.scss b/src/site/assets/styles/style.scss index c3aff91..69d15d3 100644 --- a/src/site/assets/styles/style.scss +++ b/src/site/assets/styles/style.scss @@ -249,6 +249,57 @@ table.table { } } +// vue-bar +.vb > .vb-dragger { + z-index: 5; + width: 12px; + right: 0; +} + +.vb > .vb-dragger > .vb-dragger-styler { + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transform: rotate3d(0,0,0,0); + transform: rotate3d(0,0,0,0); + -webkit-transition: + background-color 100ms ease-out, + margin 100ms ease-out, + height 100ms ease-out; + transition: + background-color 100ms ease-out, + margin 100ms ease-out, + height 100ms ease-out; + background-color: $backgroundAccent; + margin: 5px 5px 5px 0; + border-radius: 20px; + height: calc(100% - 10px); + display: block; +} + +.vb.vb-scrolling-phantom > .vb-dragger > .vb-dragger-styler { + background-color: $backgroundAccentLighter; +} + +.vb > .vb-dragger:hover > .vb-dragger-styler { + background-color: $backgroundAccentLighter; + margin: 0px; + height: 100%; +} + +.vb.vb-dragging > .vb-dragger > .vb-dragger-styler { + background-color: $backgroundAccentLighter; + margin: 0px; + height: 100%; +} + +.vb.vb-dragging-phantom > .vb-dragger > .vb-dragger-styler { + background-color: $backgroundAccentLighter; +} + +.vb-content{ + overflow: auto !important +} + // helpers .has-text-default { color: $textColor; @@ -256,4 +307,13 @@ table.table { .has-text-default-highlight { color: $textColorHighlight; -}
\ No newline at end of file +} + +.is-height-max-content { + height: max-content; +} + +.pagination a, .pagination a:hover { + text-decoration: none; +} + |