/*-------------------------------------------------------------- # Typography --------------------------------------------------------------*/ body, button, input, select, optgroup, textarea { color: $black; font-family: 'Poppins', sans-serif; font-size: 1rem; line-height: 1.6; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { margin-bottom: 0.5rem; font-weight: 700; line-height: 1.6; } h1, .h1 { font-size: 2.5rem; } h2, .h2 { font-size: 2rem; } h3, .h3 { font-size: 1.75rem; } h4, .h4 { font-size: 1.5rem; } h5, .h5 { font-size: 1.25rem; } h6, .h6 { font-size: 1rem; } p { margin-bottom: 1.5em; } dfn, cite, em, i { font-style: italic; } blockquote { margin: 0; background: $softwhite; padding: 1.25rem 1.25rem 1.25rem 3.125rem; border-left: 5px solid $black; font-size: 1.2rem; line-height: 1.8; } address { margin: 0 0 1.5em; } pre { background: $softwhite; font-family: 'Poppins', sans-serif; font-size: 15px; font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1.6em; max-width: 100%; overflow: auto; padding: 1.6em; } code, kbd, tt, var { font-family: 'Poppins', sans-serif; font-size: 15px; font-size: 0.9375rem; } abbr, acronym { border-bottom: 1px dotted $softwhite; cursor: help; } mark, ins { background: #fff9c0; text-decoration: none; } big { font-size: 125%; } /*-------------------------------------------------------------- # Elements --------------------------------------------------------------*/ html { box-sizing: border-box; } *, *:before, *:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */ box-sizing: inherit; } body { background: $white; /* Fallback for when there is no custom background color defined. */ } hr { background-color: $softwhite; border: 0; height: 1px; margin-bottom: 1.5em; } ul, ol { margin: 0; ol, ul{ margin: 0 0 1.5em 3em; } } ul { list-style: disc; } ol { list-style: decimal; } li>ul, li>ol { margin-bottom: 0; margin-left: 1.5em; } dt { font-weight: bold; } dd { margin: 0 1.5em 1.5em; } img { height: auto; /* Make sure images are scaled correctly. */ max-width: 100%; /* Adhere to container width. */ width: auto; } figure { margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */ } table { margin: 0 0 1.5em; width: 100%; } /*-------------------------------------------------------------- # Forms --------------------------------------------------------------*/ button, input[type="button"], input[type="reset"], input[type="submit"] { border: 1px solid; border-color: $black; border-radius: 0; background: $black; color: $white; line-height: 1.6; padding: .6rem 1.2rem; transition: .6s; cursor: pointer; } button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover { border-color: $black; background-color: $black !important; color: $white; } button:active, button:focus, input[type="button"]:active, input[type="button"]:focus, input[type="reset"]:active, input[type="reset"]:focus, input[type="submit"]:active, input[type="submit"]:focus { border-color: $black; } input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea { color: $black; border: 1px solid $softwhite; border-radius: 0; padding: 0.625rem; } input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus { color: $black; outline: none; border: 1px solid $black } select { border: 1px solid $black; } textarea { width: 100%; } /*-------------------------------------------------------------- ## Links --------------------------------------------------------------*/ a { color: $softyellow; text-decoration: none; } a:visited { color: $softyellow; text-decoration: underline; } a:hover, a:focus, a:active { color: $softyellow; text-decoration: underline; } a:focus { outline: thin dotted; text-decoration: underline; } a:hover, a:active { outline: 0; text-decoration: underline; } /*-------------------------------------------------------------- ## Table --------------------------------------------------------------*/ .table { width: 100%; margin-bottom: 1rem; color: $black; } .table th, .table td { padding: 0.75rem; vertical-align: top; border-top: 1px solid $softwhite; } .table thead th { vertical-align: bottom; border-bottom: 1px solid $softwhite; } .table tbody + tbody { border-top: 2px solid $softwhite; } .table-sm th, .table-sm td { padding: 0.3rem; } .table-bordered { border: 1px solid $softwhite; } .table-bordered th, .table-bordered td { border: 1px solid $softwhite; } .table-bordered thead th, .table-bordered thead td { border-bottom-width: 2px; } @media (max-width: 575.98px) { .table-responsive-sm { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } .table-responsive-sm > .table-bordered { border: 0; } } @media (max-width: 767.98px) { .table-responsive-md { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } .table-responsive-md > .table-bordered { border: 0; } } @media (max-width: 991.98px) { .table-responsive-lg { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } .table-responsive-lg > .table-bordered { border: 0; } } @media (max-width: 1199.98px) { .table-responsive-xl { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } .table-responsive-xl > .table-bordered { border: 0; } } .table-responsive { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } .table-responsive > .table-bordered { border: 0; } .form-control{ display: block; width: 100%; }