diff options
Diffstat (limited to 'src/scss/styles/home/_buttons.scss')
-rw-r--r-- | src/scss/styles/home/_buttons.scss | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/scss/styles/home/_buttons.scss b/src/scss/styles/home/_buttons.scss new file mode 100644 index 0000000..64f7a54 --- /dev/null +++ b/src/scss/styles/home/_buttons.scss @@ -0,0 +1,24 @@ +.button-container > a.button { + display: flex; + background-color: var(--button); + border-color: var(--button-border); + border-width: 1px; + box-shadow: none; + color: var(--button-text); + cursor: pointer; + margin: 1rem 0; + padding: 0.6rem; + text-align: center; + white-space: nowrap; + justify-content: center; +} + +.button-container > a.button:hover { + background-color: var(--button-hover); +} + +@media (min-width: 768px) { + .button-container > a.button { + display: inline-block; + } +} |