diff options
Diffstat (limited to 'src/layouts')
| -rw-r--r-- | src/layouts/Default.astro | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro index c0eb569..2181562 100644 --- a/src/layouts/Default.astro +++ b/src/layouts/Default.astro @@ -100,6 +100,29 @@ const date = new Date(); color: #609460; } + button { + padding: 10px 20px 10px 20px; + border-radius: 5px; + border: none; + background-color: #609460; + color: white; + cursor: pointer; + transition: ease-in-out 0.2s; + } + + button:hover { + background-color: #486e48; + transition: ease-in-out 0.2s; + } + + button:active { + background-color: #243824; + } + + .margin { + margin: 0.5em; + } + code { font-family: Menlo, |
