2020-11-23 06:32:02 +00:00
|
|
|
html {
|
|
|
|
font-family: $font-family;
|
|
|
|
font-size: $font-size;
|
|
|
|
background-color: $background-colour;
|
|
|
|
color: $text-colour;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
2020-11-24 07:18:39 +00:00
|
|
|
|
2020-11-23 06:32:02 +00:00
|
|
|
background-color: $header-background-colour;
|
|
|
|
color: $header-text-colour;
|
|
|
|
padding: 1.3rem 0 1.5rem 0;
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: $header-text-colour;
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
svg.tubesync-logo {
|
|
|
|
margin-right: 1rem;
|
|
|
|
float: left;
|
|
|
|
.logo-icon {
|
|
|
|
fill: $colour-near-white !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 3rem;
|
|
|
|
line-height: 2.7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-11-24 07:18:39 +00:00
|
|
|
nav {
|
|
|
|
|
|
|
|
background-color: $nav-background-colour;
|
|
|
|
color: $nav-text-colour;
|
|
|
|
height: 3rem;
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-size: 1.1rem !important;
|
|
|
|
color: $nav-text-colour;
|
|
|
|
text-decoration: none;
|
|
|
|
line-height: 3rem;
|
|
|
|
height: 3rem;
|
|
|
|
i {
|
|
|
|
font-size: 1.1rem !important;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
background-color: $nav-link-background-hover-colour !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-11-23 06:32:02 +00:00
|
|
|
main {
|
|
|
|
|
|
|
|
padding: 2rem 0 2rem 0;
|
|
|
|
|
2020-11-26 03:03:55 +00:00
|
|
|
h1 {
|
|
|
|
margin: 0;
|
2020-11-28 03:41:17 +00:00
|
|
|
padding: 0 0 0.5rem 0;
|
2020-11-26 03:03:55 +00:00
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
width: 100%;
|
2020-11-28 03:41:17 +00:00
|
|
|
background-color: $main-button-background-colour;
|
2020-11-26 03:03:55 +00:00
|
|
|
color: $main-button-text-colour !important;
|
|
|
|
i {
|
|
|
|
font-size: 0.9rem;
|
|
|
|
}
|
|
|
|
&:hover {
|
2020-11-28 03:41:17 +00:00
|
|
|
background-color: $main-button-background-hover-colour;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.collection {
|
|
|
|
.collection-item {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
a.collection-item {
|
|
|
|
&:hover {
|
|
|
|
background-color: $collection-background-hover-colour !important;
|
|
|
|
color: $collection-text-hover-colour !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.no-items {
|
|
|
|
color: $collection-no-items-text-colour;
|
2020-11-26 03:03:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-23 06:32:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
|
|
|
|
background-color: $footer-background-colour;
|
|
|
|
color: $footer-text-colour;
|
2020-11-24 07:18:39 +00:00
|
|
|
padding-top: 1.5rem;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
padding-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
path {
|
|
|
|
fill: $footer-link-colour !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
|
|
|
font-size: 0.85rem !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $footer-link-colour;
|
|
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
2020-11-26 03:03:55 +00:00
|
|
|
color: $footer-link-hover-colour;
|
|
|
|
text-decoration: none;
|
2020-11-24 07:18:39 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-23 06:32:02 +00:00
|
|
|
|
|
|
|
}
|