2022-06-30 21:32:56 +01:00
|
|
|
/* inter-regular - latin */
|
|
|
|
@font-face {
|
2022-11-12 17:30:18 +01:00
|
|
|
font-family: "Inter";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: local(""),
|
|
|
|
url("/static/fonts/inter-v11-latin-regular.woff2")
|
|
|
|
format("woff2"),
|
|
|
|
/* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
|
|
url("/static/fonts/inter-v11-latin-regular.woff")
|
|
|
|
format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
2022-06-30 21:32:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* inter-500 - latin */
|
|
|
|
@font-face {
|
2022-11-12 17:30:18 +01:00
|
|
|
font-family: "Inter";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
src: local(""),
|
|
|
|
url("/static/fonts/inter-v11-latin-500.woff2") format("woff2"),
|
|
|
|
/* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
|
|
url("/static/fonts/inter-v11-latin-500.woff")
|
|
|
|
format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
2022-06-30 21:32:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* inter-700 - latin */
|
|
|
|
@font-face {
|
2022-11-12 17:30:18 +01:00
|
|
|
font-family: "Inter";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
src: local(""),
|
|
|
|
url("/static/fonts/inter-v11-latin-700.woff2") format("woff2"),
|
|
|
|
/* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
|
|
url("/static/fonts/inter-v11-latin-700.woff")
|
|
|
|
format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
2022-06-30 21:32:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 62.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
font-family: inter;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
}
|
|
|
|
|
|
|
|
#lyrics {
|
|
|
|
color: #171717;
|
|
|
|
line-height: 2.5rem;
|
2022-11-12 17:30:18 +01:00
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 1;
|
2022-06-30 21:32:56 +01:00
|
|
|
}
|
|
|
|
|
2022-12-17 22:57:44 +01:00
|
|
|
#lyrics a {
|
|
|
|
color: inherit;
|
|
|
|
cursor: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** NOT YET IMPLEMENTED
|
2022-06-30 21:32:56 +01:00
|
|
|
#lyrics a {
|
|
|
|
background-color: #ddd;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2022-07-01 23:40:13 +01:00
|
|
|
#lyrics a:hover {
|
|
|
|
background-color: #ccc;
|
|
|
|
}
|
2022-12-17 22:57:44 +01:00
|
|
|
***/
|
2022-07-01 23:40:13 +01:00
|
|
|
|
2022-11-12 17:30:18 +01:00
|
|
|
nav {
|
|
|
|
background-color: #ffcd38;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2022-06-30 21:32:56 +01:00
|
|
|
padding: 0.5rem;
|
2022-11-12 17:30:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
nav img {
|
|
|
|
width: 50px;
|
2022-06-30 21:32:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#metadata {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#metadata h1 {
|
2022-07-01 23:40:13 +01:00
|
|
|
font-size: 2rem;
|
2022-06-30 21:32:56 +01:00
|
|
|
color: #171717;
|
|
|
|
}
|
|
|
|
|
|
|
|
#metadata h2 {
|
2022-07-01 23:40:13 +01:00
|
|
|
font-size: 1.4rem;
|
2022-11-12 17:30:18 +01:00
|
|
|
color: #1e1e1e;
|
2022-06-30 21:32:56 +01:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
#metadata > img {
|
|
|
|
width: 20rem;
|
|
|
|
border-radius: 3px;
|
2022-07-01 23:40:13 +01:00
|
|
|
box-shadow: 0 1px 1px #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
#container {
|
2022-11-12 17:30:18 +01:00
|
|
|
display: flex;
|
2022-10-08 22:46:48 +01:00
|
|
|
padding: 5rem 10rem;
|
|
|
|
gap: 5rem;
|
2022-07-02 17:06:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#credits {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#title {
|
|
|
|
font-size: 2rem;
|
2022-11-12 17:30:18 +01:00
|
|
|
color: #1b1a17;
|
2022-07-02 17:06:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#credits summary {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
cursor: pointer;
|
2022-11-12 17:30:18 +01:00
|
|
|
color: #1e1e1e;
|
2022-07-02 17:06:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#credits p {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
padding: 0.5rem;
|
|
|
|
color: #171717;
|
|
|
|
}
|
|
|
|
|
|
|
|
#info {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#about {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#about p {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
color: #171717;
|
|
|
|
line-height: 1.8rem;
|
2022-10-08 22:46:48 +01:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
2022-06-30 21:32:56 +01:00
|
|
|
}
|
2022-10-08 22:46:48 +01:00
|
|
|
|
2022-10-26 23:19:03 +01:00
|
|
|
#home {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 1.5rem;
|
|
|
|
align-items: center;
|
|
|
|
padding: 2rem;
|
2022-12-17 21:45:45 +01:00
|
|
|
flex-grow: 1;
|
2022-10-26 23:19:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#home div {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#home h1 {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 2.2rem;
|
|
|
|
color: #222;
|
|
|
|
}
|
|
|
|
|
|
|
|
#home p {
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
#home code {
|
|
|
|
background-color: #eee;
|
|
|
|
padding: 0.3rem 1rem;
|
2022-11-12 17:30:18 +01:00
|
|
|
border-radius: 0.5rem;
|
2022-10-26 23:19:03 +01:00
|
|
|
color: #333;
|
|
|
|
}
|
2022-11-12 17:30:18 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 900px) {
|
|
|
|
#container {
|
|
|
|
padding: 3rem 2rem;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#metadata {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
}
|
2022-12-17 21:45:45 +01:00
|
|
|
|
|
|
|
footer {
|
|
|
|
text-align: center;
|
|
|
|
background-color: #ffcd38;
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
font-weight: 500;
|
|
|
|
color: #1b1a17;
|
2022-12-17 22:57:44 +01:00
|
|
|
transition: 0.3s ease text-decoration;
|
2022-12-17 21:45:45 +01:00
|
|
|
font-size: 1.4rem;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 100vh;
|
|
|
|
}
|
2022-12-17 22:57:44 +01:00
|
|
|
|
|
|
|
/* dark mode */
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
body {
|
|
|
|
background-color: #181d31;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav, footer {
|
|
|
|
background-color: #fec260;
|
|
|
|
}
|
|
|
|
|
|
|
|
#lyrics {
|
|
|
|
color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#metadata h1 {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
#metadata h2, #credits p {
|
|
|
|
color: #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
#title {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
#about p, #credits summary {
|
|
|
|
color: #ccc
|
|
|
|
}
|
|
|
|
|
|
|
|
#home h1 {
|
|
|
|
color: #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
#home p {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
}
|