From 539a9985ac164466b1837b7c66dbf4c4936a054d Mon Sep 17 00:00:00 2001 From: Sharron Stapleton <51395844+stapletonsl@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:33:55 +1000 Subject: [PATCH] Delete _sass directory --- _sass/_custom.scss | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 _sass/_custom.scss diff --git a/_sass/_custom.scss b/_sass/_custom.scss deleted file mode 100644 index 4b6d737..0000000 --- a/_sass/_custom.scss +++ /dev/null @@ -1,42 +0,0 @@ -/* add decorative borders */ -header { - border-top: solid 4px $top-border; - .nav-tabs { - border-bottom: none; - } -} -footer { - border-top: solid 1px $top-border; - .nav-link { - color: rgba(0,0,0,.5); - &.active { - text-decoration: underline; - color: rgba(0,0,0,.9); - } - &:hover { - color: rgba(0,0,0,.7); - } - } -} -/* change default colors */ -body { - color: $text-color; -} -a { - color: $link-color; -} -/* change container size for easier reading */ -@media (min-width:576px){ - .container{max-width:540px} -} -@media (min-width:768px){ - .container{max-width:750px} -} -@media (min-width:992px){ - .container{max-width:$container-max} -} -@media (min-width:1200px){ - .container{max-width:$container-max} -} -/* remove margin in alerts */ -.alert p:last-of-type { margin-bottom: 0; }