diff options
author | rebortg <github@ghlr.de> | 2024-05-28 14:00:06 +0200 |
---|---|---|
committer | rebortg <github@ghlr.de> | 2024-05-28 14:00:06 +0200 |
commit | 71cc999073a729e313e5a011261cea3729a40015 (patch) | |
tree | 65a658ece5b07d0c7fe15e02fdb3f3562a52a21f /docs/_static/css/linkButtons.css | |
parent | d182801f7d1cf73b04d79310e0fe45b1160a0544 (diff) | |
download | vyos-documentation-71cc999073a729e313e5a011261cea3729a40015.tar.gz vyos-documentation-71cc999073a729e313e5a011261cea3729a40015.zip |
Enable new design on sagitta
Diffstat (limited to 'docs/_static/css/linkButtons.css')
-rw-r--r-- | docs/_static/css/linkButtons.css | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/docs/_static/css/linkButtons.css b/docs/_static/css/linkButtons.css new file mode 100644 index 00000000..11a48e64 --- /dev/null +++ b/docs/_static/css/linkButtons.css @@ -0,0 +1,57 @@ +.rst-footer-buttons { + .fa-arrow-circle-left { + padding-left: 25px; + } + + .fa-arrow-circle-left::before { + content: url('../images/arrow-left.svg'); + position: absolute; + top: 10px; + left: 15px; + } + + & > .btn-neutral { + background: #fff !important; + min-width: 90px; + height: 40px; + border: 2px solid #FD8F01; + color: #121010 !important; + font-family: 'Archivo', sans-serif; + font-size: 16px; + font-weight: 600; + letter-spacing: -0.02em; + position: relative; + text-align: left; + box-shadow: none; + transition: transform 250ms linear; + display: flex; + align-items: center; + padding-top: 0; + padding-bottom: 0; + border-radius: 4px; + + &:hover, + &:active { + transform: scale(1.05); + /* padding-left: 16px; */ + } + + &:focus { + outline: none; + } + + .fa-arrow-circle-right::before { + content: url('../images/arrow-right.svg'); + position: absolute; + top: 10px; + right: 15px; + } + } +} + +p > a.reference.external, +p > a, +#partaker-i5 > p > a.external { + color: #FD8F01; + word-break: break-word; +} |