You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
161 lines
2.2 KiB
SCSS
161 lines
2.2 KiB
SCSS
html {
|
|
font-size: 14px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
.main {
|
|
padding-right: 40px;
|
|
padding-left: 220px; /* 180 + 40 */
|
|
}
|
|
}
|
|
|
|
.input-group {
|
|
max-width: 960px;
|
|
margin: auto;
|
|
}
|
|
|
|
.main {
|
|
background-color: secondary;
|
|
}
|
|
|
|
body {
|
|
font-size: 1rem;
|
|
padding-top: 80px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.feather {
|
|
width: 16px;
|
|
height: 16 px;
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
.album {
|
|
background-color: secondary;
|
|
color: navbartext;
|
|
}
|
|
|
|
.img-thumbnail {
|
|
background-color: primary;
|
|
}
|
|
|
|
.thumbnail {
|
|
background-color: primary;
|
|
}
|
|
|
|
|
|
|
|
.navbar {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/*
|
|
* Sidebar
|
|
*/
|
|
|
|
.sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 100; /* Behind the navbar */
|
|
padding: 0;
|
|
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
|
|
}
|
|
|
|
.sidebar-sticky {
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
top: 48px; /* Height of navbar */
|
|
height: calc(100vh - 48px);
|
|
margin-top: 6rem;
|
|
padding-left: .5rem;
|
|
overflow-x: hidden;
|
|
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
|
|
}
|
|
|
|
.sidebar .nav-link {
|
|
font-weight: 500;
|
|
color: navbartext;
|
|
}
|
|
|
|
.sidebar .nav-link .feather {
|
|
margin-right: 4px;
|
|
color: navbartextfeather;
|
|
}
|
|
|
|
.sidebar .nav-link.active {
|
|
color: navbartextactive;
|
|
}
|
|
|
|
.sidebar .nav-link:hover .feather,
|
|
.sidebar .nav-link.active .feather {
|
|
color: inherit;
|
|
}
|
|
|
|
.sidebar-heading {
|
|
font-size: .75rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
/*
|
|
* End Sidebar
|
|
*/
|
|
|
|
.border-top { border-top: 1px solid #e5e5e5; }
|
|
.border-bottom { border-bottom: 1px solid #e5e5e5; }
|
|
.nav-link {
|
|
color: navbartext;
|
|
}
|
|
|
|
|
|
.searchbutton {
|
|
background-color: transparent;
|
|
color: searchhint;
|
|
border-radius: 25px;
|
|
}
|
|
|
|
.searchbutton svg {
|
|
fill: searchhint;
|
|
}
|
|
|
|
.card-image-background {
|
|
display: flex;
|
|
}
|
|
|
|
.text-align-left {
|
|
text-align: left;
|
|
}
|
|
|
|
.category-header p {
|
|
margin: 0 0 .15em 0;
|
|
padding-left: 1rem;
|
|
padding-bottom: .5rem;
|
|
}
|
|
|
|
.category-header h5 {
|
|
padding-left: 1rem;
|
|
padding-top: .5rem;
|
|
}
|
|
|
|
.footer {
|
|
padding-top: 3rem;
|
|
padding-bottom: 3rem;
|
|
background: primary;
|
|
}
|
|
|
|
.footer p {
|
|
margin-bottom: .25rem;
|
|
margin-left: 25rem;
|
|
padding-left: 25rem;
|
|
}
|
|
|
|
.helpcontent {
|
|
margin: 3rem;
|
|
padding: 3rem;
|
|
font-size: 11px;
|
|
}
|