From 4a39ffd95e6cd516bf35e4417b508d362fba00ae Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Wed, 22 Oct 2025 12:34:53 -0500 Subject: [PATCH] add calendar button --- package-lock.json | 4 ++-- package.json | 2 +- styles/01-layout.scss | 6 ++++++ styles/02-colors.scss | 22 ++++++++++++++++++++-- views/head.ejs | 2 +- views/index.ejs | 3 +++ 6 files changed, 33 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6c5f50f..2871886 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "madisonlinux", - "version": "0.0.1", + "version": "0.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "madisonlinux", - "version": "0.0.1", + "version": "0.0.2", "license": "MIT", "dependencies": { "ejs": "3.1.10", diff --git a/package.json b/package.json index 092ef35..ca4cadc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "madisonlinux", - "version": "0.0.1", + "version": "0.0.2", "description": "Website for upcoming Linux install party in Madison WI", "keywords": [ "web", diff --git a/styles/01-layout.scss b/styles/01-layout.scss index b9d0f1e..f3e14a1 100644 --- a/styles/01-layout.scss +++ b/styles/01-layout.scss @@ -62,6 +62,12 @@ img { } } +.btn { + padding: .4em .65em; + text-decoration: none; + border-radius: 4px; +} + .img-container { overflow-x: auto; max-width: 100%; diff --git a/styles/02-colors.scss b/styles/02-colors.scss index f13533e..64f0cb9 100644 --- a/styles/02-colors.scss +++ b/styles/02-colors.scss @@ -4,14 +4,32 @@ body { background: linear-gradient(90deg, rgba(19, 65, 123, 1) 0%, rgba(25, 74, 136, 1) 50%, rgba(19, 65, 123, 1) 100%); } -a, a:link, a:visited { +a, +a:link, +a:visited { color: #fff; + + &:hover { + color: #fff3ba; + } } blockquote { border-left: 5px solid #fff; } +.btn, +a.btn { + background-color: #fff; + color: #000; + box-shadow: 0px 3px 10px 0px rgba(50, 50, 50, .65); + + &:hover { + background-color: #fff3ba; + color: #000; + } +} + .nav_links { background-color: #fff; color: #13417B; @@ -26,4 +44,4 @@ blockquote { color: #fff; } } -} +} \ No newline at end of file diff --git a/views/head.ejs b/views/head.ejs index 561d5db..c0c8488 100644 --- a/views/head.ejs +++ b/views/head.ejs @@ -14,7 +14,7 @@ <% } %> - +