2021-11-09 22:47:49 +00:00
|
|
|
@import "now.scss";
|
|
|
|
|
|
|
|
body {
|
2021-12-19 22:50:03 +00:00
|
|
|
background-color: #121212;
|
|
|
|
color: #efefef;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-bg {
|
|
|
|
background-color: #232323;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-element {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-icon {
|
|
|
|
vertical-align: middle;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unselected img {
|
|
|
|
filter: brightness(0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
.black-img {
|
|
|
|
filter: brightness(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.central {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.data-value {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.separator-border {
|
|
|
|
border-bottom: 1px solid #191919;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dash-underline {
|
|
|
|
text-decoration: dotted;
|
|
|
|
text-decoration-line: underline;
|
|
|
|
text-decoration-thickness: 2px;
|
|
|
|
text-underline-offset: 5px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: solid;
|
|
|
|
text-decoration-line: underline;
|
|
|
|
text-decoration-thickness: 1.5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dash-underline-lg {
|
|
|
|
font-size: 24px;
|
|
|
|
text-decoration: dotted;
|
|
|
|
text-decoration-line: underline;
|
|
|
|
text-decoration-thickness: 4px;
|
|
|
|
text-underline-offset: 5px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: solid;
|
|
|
|
text-decoration-line: underline;
|
|
|
|
text-decoration-thickness: 3.4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.link-dark {
|
|
|
|
color: #a3a3a3;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: #a3a3a3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=text], input[type=email], input[type=tel], input[type=password] {
|
|
|
|
background-color: #444444 !important;
|
|
|
|
border-color: #545454;
|
|
|
|
color: $text-color;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
color: $text-color;
|
|
|
|
}
|
|
|
|
}
|
2022-06-22 21:51:38 +01:00
|
|
|
|
|
|
|
.card {
|
|
|
|
background-color: #333232;
|
|
|
|
color: $text-color;
|
|
|
|
margin: 5px;
|
|
|
|
padding: 15px;
|
|
|
|
box-shadow: 4px 4px 2px $shadow-color;
|
|
|
|
transition: box-shadow 0.5s;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
box-shadow: none;
|
|
|
|
offset: 4px 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.daily-scrobbles-card {
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
max-width: 250px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 10px;
|
|
|
|
font-size: 45px;
|
|
|
|
}
|
|
|
|
}
|