MusicTopus/sass/global.scss

77 lines
1.6 KiB
SCSS
Raw Normal View History

2022-02-18 16:53:54 +01:00
html {
min-height: 100vh;
body {
background-color: var(--bg-color);
2022-02-18 16:53:54 +01:00
display: flex;
flex-direction: column;
padding-top: 3.5rem;
font-family: 'open_sansregular';
font-weight: 400;
2022-02-19 09:25:51 +01:00
min-height: 100vh;
&.is-accessible {
font-family: 'lucioleregular';
}
2022-02-19 09:25:51 +01:00
footer.footer {
2022-02-18 16:53:54 +01:00
margin-top: auto;
2022-02-19 09:25:51 +01:00
padding: 2rem 0.7rem 1.5rem;
background-color: var(--footer-color);
2022-02-18 16:53:54 +01:00
}
2022-02-19 09:25:51 +01:00
2022-02-18 16:53:54 +01:00
a {
color: var(--secondary-color);
2022-02-18 16:53:54 +01:00
cursor: pointer;
}
2022-02-23 08:41:30 +01:00
h1 {
margin-top: 2rem;
}
2022-02-18 08:14:34 +01:00
}
2022-02-19 09:25:51 +01:00
}
.layout-maxed {
@include respond-to("small") {
padding: 0 0.7rem;
}
2022-02-23 11:33:57 +01:00
}
.is-hidden {
display: none;
}
:root {
--bg-color: rgb(242, 244, 248);
--font-color: rgb(76, 86, 106);
--default-color: #fff;
--default-hl-color: #dbdbdb;
--primary-color: #2d7c58;
--primary-hl-color: #267953;
--secondary-color: #485fc7;
--secondary-hl-color: #3e56c4;
--danger-color: #d73455;
--danger-hl-color: #d70933;
--footer-color: #fafafa;
--bg-light-color: #fafafa;
--disabled-color: #7a7a7a;
--heading-color: #292922;
}
[data-theme="dark"] {
--bg-color: rgb(36, 41, 51);
--font-color: rgb(236, 239, 244);
--default-color: #fff;
--default-hl-color: #dbdbdb;
--primary-color: #2d7c58;
--primary-hl-color: #267953;
--secondary-color: #485fc7;
--secondary-hl-color: #3e56c4;
--danger-color: #692230;
--danger-hl-color: #4e0f1b;
2022-02-18 08:14:34 +01:00
}