diff --git a/_sass/modules/_buttons.scss b/_sass/modules/_buttons.scss deleted file mode 100644 index 32ee8b78..00000000 --- a/_sass/modules/_buttons.scss +++ /dev/null @@ -1,61 +0,0 @@ -// Buttons -//–––––––––––––––––––––––––––––––––––––––––––––––––– - -.button, -button { - display: inline-block; - height: 38px; - padding: 0 30px; - color: $button-color; - text-align: center; - font-size: 11px; - font-weight: 600; - line-height: 38px; - letter-spacing: .1rem; - text-transform: uppercase; - text-decoration: none; - white-space: nowrap; - background-color: transparent; - border-radius: $global-radius; - border: 1px solid $border-color; - cursor: pointer; - box-sizing: border-box; -} - -.button:hover, -button:hover { - color: $button-hover-color; - border-color: lighten($button-hover-color, 33.3%); - outline: 0; -} - -input { - &[type="submit"]:hover, - &[type="reset"]:hover, - &[type="button"]:hover { - color: $button-hover-color; - border-color: lighten($button-hover-color, 33.3%); - outline: 0; - } -} - -.button:focus, -button:focus { - color: $button-hover-color; - border-color: lighten($button-hover-color, 33.3%); - outline: 0; -} - -.button.button-primary:hover, -button.button-primary:hover { - color: $button-buttonprimary-color; - background-color: $link-color; - border-color: $link-color; -} - -.button.button-primary:focus, -button.button-primary:focus { - color: $button-buttonprimary-color; - background-color: $link-color; - border-color: $link-color; -} diff --git a/_sass/modules/_code.scss b/_sass/modules/_code.scss deleted file mode 100644 index 55b11350..00000000 --- a/_sass/modules/_code.scss +++ /dev/null @@ -1,18 +0,0 @@ -// Code -//–––––––––––––––––––––––––––––––––––––––––––––––––– - -code { - padding: .2rem .5rem; - margin: 0 .2rem; - font-size: 90%; - white-space: nowrap; - background: lighten($code-background-color, 6.4%); - border: 1px solid $code-background-color; - border-radius: $global-radius; -} - -pre > code { - display: block; - padding: 1rem 1.5rem; - white-space: pre; -} diff --git a/_sass/modules/_lists.scss b/_sass/modules/_lists.scss deleted file mode 100644 index d3c0fd1a..00000000 --- a/_sass/modules/_lists.scss +++ /dev/null @@ -1,32 +0,0 @@ -// Lists -//–––––––––––––––––––––––––––––––––––––––––––––––––– - -ul { - list-style: circle inside; -} - -ol { - list-style: decimal inside; - padding-left: 0; - margin-top: 0; -} - -ul { - padding-left: 0; - margin-top: 0; - ul, ol { - margin: 1.5rem 0 1.5rem 3rem; - font-size: 90%; - } -} - -ol { - ol, ul { - margin: 1.5rem 0 1.5rem 3rem; - font-size: 90%; - } -} - -li { - margin-bottom: 1rem; -} diff --git a/_sass/modules/_modules.scss b/_sass/modules/_modules.scss deleted file mode 100644 index 284c693c..00000000 --- a/_sass/modules/_modules.scss +++ /dev/null @@ -1,6 +0,0 @@ -// @import "buttons"; -// @import "code"; -// @import "lists"; -// @import "navigation"; -// @import "spacing"; -// @import "tables"; diff --git a/_sass/modules/_navigation.scss b/_sass/modules/_navigation.scss deleted file mode 100644 index b93d379f..00000000 --- a/_sass/modules/_navigation.scss +++ /dev/null @@ -1,70 +0,0 @@ -/* Dropdown Button */ -.dropbtn { - color: white; - padding: 20px; - font-size: 16px; - border: none; -} - -/* The container
- needed to position the dropdown content */ -.dropdown { - - #logo { - float: left; - margin-right: 10px; - width: 40px; - length: 40px; - } - - #brand { - font-family: $large-header-font; - color: white; - font-size: 30px; - margin-top: 2px; - } -} - -/* Dropdown Content (Hidden by Default) */ -.dropdown-content { - margin-left: 20px; - display: none; - position: absolute; - background-color: $dropdown-content-background-color; - min-width: 160px; - box-shadow: 0px 8px 16px 0px $dropdown-content-shadow-color; - z-index: 100; - - -} - -/* Links inside the dropdown */ -.dropdown-content a { - color: black; - padding: 12px 30px; - text-decoration: none; - display: block; - - &:hover {/* Change color of dropdown links on hover */ - background-color: $dropdown-content-a-hover-background-color - } -} - -.dropdown:hover { - - /* Show the dropdown menu on hover */ - .dropdown-content { - display: block; - } - - /* Change the background color of the dropdown button when the dropdown content is shown */ - .dropbtn { - width: 0 auto; - } - -} - -.pagination { - color: white; - padding: 20px; - text-align: center; -} diff --git a/_sass/modules/_spacing.scss b/_sass/modules/_spacing.scss deleted file mode 100644 index 9d5ba67e..00000000 --- a/_sass/modules/_spacing.scss +++ /dev/null @@ -1,26 +0,0 @@ -// Spacing -//–––––––––––––––––––––––––––––––––––––––––––––––––– - -button, -.button { - margin-bottom: 1rem; -} - -input, -textarea, -select, -fieldset { - margin-bottom: 1.5rem; -} - -pre, -blockquote, -dl, -figure, -table, -p, -ul, -ol, -form { - margin-bottom: 2.5rem; -} diff --git a/_sass/modules/_tables.scss b/_sass/modules/_tables.scss deleted file mode 100644 index c873c642..00000000 --- a/_sass/modules/_tables.scss +++ /dev/null @@ -1,19 +0,0 @@ -// Tables -//–––––––––––––––––––––––––––––––––––––––––––––––––– - -th, -td { - padding: 12px 15px; - text-align: left; - border-bottom: 1px solid $table-border-color; -} - -th:first-child, -td:first-child { - padding-left: 0; -} - -th:last-child, -td:last-child { - padding-right: 0; -}