upgrade setto
This commit is contained in:
parent
479cff7a23
commit
f15d28a769
84 changed files with 4207 additions and 593 deletions
|
|
@ -4,22 +4,24 @@
|
|||
|
||||
display: none;
|
||||
text-align: right;
|
||||
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
background-color: var(--border);
|
||||
background-color: var(--bg);
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-evenly;
|
||||
align-content: center;
|
||||
align-items: center;
|
||||
z-index: 1000;
|
||||
|
||||
z-index: 10000000;
|
||||
-webkit-box-shadow: 0px -12px 32px -25px var(--border-alt);
|
||||
-moz-box-shadow: 0px -12px 32px -25px var(--border-alt);
|
||||
box-shadow: 0px -12px 32px -25px var(--border-alt);
|
||||
p {
|
||||
flex: 1 0 250px;
|
||||
margin: 40px 20px 40px 40px;
|
||||
font-size: 0.75em;
|
||||
font-family: _font(family-fixed);
|
||||
font-size: 0.8em;
|
||||
font-family: _font(family);
|
||||
font-weight: 300;
|
||||
}
|
||||
@media only screen and (max-width: 651px) {
|
||||
p {
|
||||
|
|
@ -34,10 +36,10 @@
|
|||
|
||||
.yes {
|
||||
flex: 0 0 250px;
|
||||
-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-moz-transition: all var(--anim-speed) ease-in-out;
|
||||
-webkit-transition: all var(--anim-speed) ease-in-out;
|
||||
-ms-transition: all var(--anim-speed) ease-in-out;
|
||||
transition: all var(--anim-speed) ease-in-out;
|
||||
text-align: center;
|
||||
background-position-x: 0%;
|
||||
background-position-y: 0%;
|
||||
|
|
@ -54,8 +56,8 @@
|
|||
}
|
||||
.yes:hover {
|
||||
// color: #000 !important;
|
||||
-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-moz-transition: all var(--anim-speed) ease-in-out;
|
||||
-webkit-transition: all var(--anim-speed) ease-in-out;
|
||||
-ms-transition: all var(--anim-speed) ease-in-out;
|
||||
transition: all var(--anim-speed) ease-in-out;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,22 +9,22 @@ h1 {
|
|||
font-size: 2.5em;
|
||||
}
|
||||
h2 {
|
||||
font-size: 2em;
|
||||
font-size: 1.75em;
|
||||
}
|
||||
h3 {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
strong {
|
||||
font-weight: 700;
|
||||
font-weight: 500;
|
||||
}
|
||||
a {
|
||||
text-decoration-style: wavy;
|
||||
text-decoration-color: transparent;
|
||||
color: var(--accent2);
|
||||
-moz-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-webkit-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-moz-transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
|
||||
-webkit-transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
|
||||
-ms-transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
|
||||
transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
|
||||
}
|
||||
a:hover {
|
||||
color: var(--accent1);
|
||||
|
|
@ -37,58 +37,86 @@ a:hover {
|
|||
.button {
|
||||
background-color: var(--accent2);
|
||||
padding: 1em;
|
||||
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
border-radius: var(--border-radius);
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
color: var(--fg);
|
||||
color: var(--bg);
|
||||
-webkit-box-shadow: 0px 0px 0px -3px var(--border-alt);
|
||||
-moz-box-shadow: 0px 0px 0px -3px var(--border-alt);
|
||||
box-shadow: 0px 0px 0px -3px var(--border-alt);
|
||||
-webkit-transition: all var(--anim-speed) ease-in-out;
|
||||
-moz-transition: all var(--anim-speed) ease-in-out;
|
||||
-ms-transition: all var(--anim-speed) ease-in-out;
|
||||
transition: all var(--anim-speed) ease-in-out;
|
||||
|
||||
|
||||
|
||||
}
|
||||
.button:hover {
|
||||
background-color: var(--accent1);
|
||||
color: var(--bg);
|
||||
-webkit-box-shadow: 0px 11px 10px -3px var(--border-alt);
|
||||
-moz-box-shadow: 0px 11px 10px -3px var(--border-alt);
|
||||
box-shadow: 0px 11px 10px -3px var(--border-alt);
|
||||
-webkit-transition: all var(--anim-speed) ease-in-out;
|
||||
-moz-transition: all var(--anim-speed) ease-in-out;
|
||||
-ms-transition: all var(--anim-speed) ease-in-out;
|
||||
transition: all var(--anim-speed) ease-in-out;
|
||||
}
|
||||
.button:active {
|
||||
-webkit-box-shadow: 0px 0px 0px -3px var(--border-alt);
|
||||
-moz-box-shadow: 0px 0px 0px -3px var(--border-alt);
|
||||
box-shadow: 0px 0px 0px -3px var(--border-alt);
|
||||
}
|
||||
|
||||
// album index
|
||||
.releases {
|
||||
.normal-section {
|
||||
display:flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-around;
|
||||
padding: 20px;
|
||||
|
||||
-webkit-box-shadow: unset;
|
||||
-moz-box-shadow: unset;
|
||||
box-shadow: unset;
|
||||
h2 {
|
||||
flex: 0 0 100%;
|
||||
margin: 20px;
|
||||
}
|
||||
article {
|
||||
flex: 1 1 280px;
|
||||
max-width: 480px;
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 20px;
|
||||
}
|
||||
ul{
|
||||
width: 100%;
|
||||
|
||||
}
|
||||
|
||||
.icon {
|
||||
flex: 0 0 100px;
|
||||
margin: 0 0 20px 0;
|
||||
display: inline-block;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 200px;
|
||||
font-size: 40px;
|
||||
|
||||
line-height: 100px;
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
img {
|
||||
width:100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
border-radius: 5px;
|
||||
border-radius: var(--border-radius);
|
||||
}
|
||||
}
|
||||
|
||||
// Streambox
|
||||
.streambox {
|
||||
text-align: center;
|
||||
line-height: 2em;
|
||||
> h2, div {
|
||||
margin: 20px;
|
||||
}
|
||||
}
|
||||
.streamer {
|
||||
margin-top: 2em;
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
// icon
|
||||
|
||||
.label {
|
||||
|
|
@ -105,10 +133,10 @@ a:hover {
|
|||
border: 1px solid var(--accent2);
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
-moz-transition: border 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-webkit-transition: border 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-ms-transition: border 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
transition: border 0.2s ease-in-out, color 0.2s ease-in-out;
|
||||
-moz-transition: border var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
|
||||
-webkit-transition: border var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
|
||||
-ms-transition: border var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
|
||||
transition: border var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
|
||||
|
||||
}
|
||||
.icon:hover {
|
||||
|
|
@ -149,17 +177,18 @@ a:hover {
|
|||
}
|
||||
}
|
||||
|
||||
.info, .info-pages {
|
||||
.info{
|
||||
padding: 40px;
|
||||
> div {
|
||||
max-width: 1200px;
|
||||
|
||||
margin: auto;
|
||||
.info-pages {
|
||||
padding-top: 40px;
|
||||
max-width: var(--max-width);
|
||||
margin: auto;
|
||||
}
|
||||
p {
|
||||
margin: 20px 0;
|
||||
}
|
||||
}
|
||||
.info-pages {
|
||||
h2, h3, h4, h5, h6 {
|
||||
text-align: left;
|
||||
}
|
||||
|
|
@ -176,7 +205,7 @@ a:hover {
|
|||
}
|
||||
> div {
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-repeat: no;
|
||||
background-position: center center;
|
||||
flex: 1 1 512px;
|
||||
min-height: 80vh;
|
||||
|
|
@ -214,4 +243,132 @@ a:hover {
|
|||
background: var(--bg);
|
||||
background: linear-gradient(180deg, var(--bg) 26%, var(--accent2-alt) 100%);
|
||||
|
||||
}
|
||||
|
||||
|
||||
.front-section {
|
||||
flex-direction: row-reverse;
|
||||
-webkit-box-shadow: unset;
|
||||
-moz-box-shadow: unset;
|
||||
box-shadow: unset;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
p, h1, h2, h3, h4 {
|
||||
text-align: left;
|
||||
margin-top: 20px;
|
||||
max-width: 570px;
|
||||
}
|
||||
p:last-child {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
> div {
|
||||
background-size: cover;
|
||||
background-repeat: no;
|
||||
background-position: center center;
|
||||
flex: 1 1 380px;
|
||||
min-height: 50vh;
|
||||
|
||||
padding: 20px;
|
||||
box-sizing: border-box;
|
||||
text-align: left;
|
||||
|
||||
}
|
||||
.description {
|
||||
min-height: unset;
|
||||
}
|
||||
.container {
|
||||
max-width: 460px;
|
||||
margin: 0 20px 0 auto;
|
||||
}
|
||||
@media only screen and (max-width: 1080px) {
|
||||
|
||||
.container {
|
||||
margin: 0 20px 0 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.front-section:nth-child(even) {
|
||||
flex-direction: row;
|
||||
.container {
|
||||
|
||||
margin: 0 auto 0 20px;
|
||||
}
|
||||
@media only screen and (max-width: 1000px) {
|
||||
.container {
|
||||
|
||||
margin: 0 20px 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.front-section:first-of-type {
|
||||
margin-top: 40px;
|
||||
|
||||
}
|
||||
|
||||
.splash {
|
||||
.container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
padding: 40px;
|
||||
align-items: flex-start;
|
||||
max-width: var(--max-width);
|
||||
margin: auto;
|
||||
h1, h2 {
|
||||
font-size: 2em;
|
||||
}
|
||||
p, h1, h2, h3, h4 {
|
||||
text-align: left;
|
||||
margin-top: 20px;
|
||||
|
||||
}
|
||||
h1:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
div {
|
||||
max-width: unset;
|
||||
margin: 0;
|
||||
flex: 1 1 300px;
|
||||
padding: 0 0 0 80px;
|
||||
|
||||
}
|
||||
.splash-logo {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
@media only screen and (max-width: 759px) {
|
||||
div {
|
||||
min-width: 100%;
|
||||
padding: 20px 0;
|
||||
}
|
||||
.splash-logo {
|
||||
padding: 20px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#contact {
|
||||
padding: 20px;
|
||||
|
||||
> div {
|
||||
max-width: var(--max-width);
|
||||
margin: auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
h2 {
|
||||
padding-top: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.normal-section {
|
||||
display:flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-around;
|
||||
padding: 20px;
|
||||
-webkit-box-shadow: unset;
|
||||
-moz-box-shadow: unset;
|
||||
box-shadow: unset;
|
||||
}
|
||||
125
_sass/_forms.scss
Normal file
125
_sass/_forms.scss
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
.textspace {
|
||||
height: 100px;
|
||||
|
||||
}
|
||||
|
||||
input, textarea, select {
|
||||
width: 100%;
|
||||
padding: 12px 20px;
|
||||
margin: 8px 0;
|
||||
display: inline-block;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: var(--border-radius);
|
||||
box-sizing: border-box;
|
||||
font-family: _font(family);
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
|
||||
input[type=submit] {
|
||||
width: 200px;
|
||||
background-image: linear-gradient(223deg, var(--accent1), var(--accent2));
|
||||
background-size: 800% 800%;
|
||||
-webkit-animation: backgroundBlink 2s ease infinite;
|
||||
-moz-animation: backgroundBlink 2s ease infinite;
|
||||
animation: backgroundBlink 2s ease infinite;
|
||||
|
||||
|
||||
color: var(--bg);
|
||||
padding: 14px 20px;
|
||||
margin: 8px 0;
|
||||
border: none;
|
||||
border-radius: var(--border-radius);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=submit]:hover {
|
||||
background-image: linear-gradient(223deg, var(--accent2),var(--accent1));
|
||||
background-size: 800% 800%;
|
||||
-webkit-animation: backgroundBlink 2s ease infinite;
|
||||
-moz-animation: backgroundBlink 2s ease infinite;
|
||||
animation: backgroundBlink 2s ease infinite;
|
||||
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
label {
|
||||
display: none;
|
||||
|
||||
}
|
||||
input {
|
||||
flex: 1 1 330px;
|
||||
min-width: 240px;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/*specific classes related to Checkbox skins*/
|
||||
/* CSS Created by CSS CHECKBOX */
|
||||
/**********************************/
|
||||
/**** www.CSScheckbox.com *********/
|
||||
|
||||
/*general styles for all CSS Checkboxes*/
|
||||
label {
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
input[type=checkbox].css-checkbox {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
clip: rect(0 0 0 0);
|
||||
height:1px;
|
||||
width:1px;
|
||||
margin:-1px;
|
||||
padding:0;
|
||||
border:0;
|
||||
}
|
||||
|
||||
input[type=checkbox].css-checkbox + label.css-label {
|
||||
padding-left:20px;
|
||||
height:15px;
|
||||
display:inline-block;
|
||||
background-repeat:no-repeat;
|
||||
background-position: 0 0;
|
||||
font-size:1em;
|
||||
vertical-align:middle;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
input[type=checkbox].css-checkbox:checked + label.css-label {
|
||||
background-position: 0 -15px;
|
||||
}
|
||||
|
||||
.css-label{
|
||||
background-image:url(/assets/img/check.png);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
input[type=checkbox].css-checkbox.lrg + label.css-label.lrg {
|
||||
padding-left:22px;
|
||||
height:20px;
|
||||
display:inline-block;
|
||||
line-height:20px;
|
||||
background-repeat:no-repeat;
|
||||
background-position: 0 0;
|
||||
font-size:1em;
|
||||
vertical-align:middle;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
input[type=checkbox].css-checkbox.lrg:checked + label.css-label.lrg{
|
||||
|
||||
background-position: 0 -20px;
|
||||
}
|
||||
|
||||
|
|
@ -1,29 +1,30 @@
|
|||
html,
|
||||
body {
|
||||
margin:0;
|
||||
padding:0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: var(--bg);
|
||||
}
|
||||
body {
|
||||
height: 100vh;
|
||||
width: 100%;
|
||||
font-family: _font(family-fixed);
|
||||
font-family: _font(family);
|
||||
font-weight: 300;
|
||||
color: var(--fg);
|
||||
letter-spacing: _font(kerning);
|
||||
background-color: var(--bg);
|
||||
|
||||
}
|
||||
#main-wrapper {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
width: 100%;
|
||||
-webkit-transition: filter 400ms ease-in;
|
||||
-moz-transition: filter 400ms ease-in;
|
||||
transition: filter 400ms ease-in;
|
||||
-webkit-transition: filter var(--anim-speed) ease-in;
|
||||
-moz-transition: filter var(--anim-speed) ease-in;
|
||||
-ms-transition: filter var(--anim-speed) ease-in-out;
|
||||
transition: filter var(--anim-speed) ease-in;
|
||||
z-index: 1;
|
||||
|
||||
}
|
||||
.content-wrapper {
|
||||
max-width: 1200px;
|
||||
max-width: var(--max-width);
|
||||
margin: auto;
|
||||
}
|
||||
.wrapper {
|
||||
|
|
@ -34,133 +35,245 @@ body {
|
|||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
align-content: center;
|
||||
background-color: var(--bg);
|
||||
background-color: transparent;
|
||||
justify-content: center;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
padding: 40px;
|
||||
position: relative;
|
||||
min-height: 75vh;
|
||||
min-height: 80vh;
|
||||
width: 100vw;
|
||||
|
||||
.textcontainer {
|
||||
background-color: var(--bg-alt);
|
||||
border-radius: 5px;
|
||||
border-radius: var(--border-radius);
|
||||
max-width: 700px;
|
||||
padding: 20px 20px 40px 20px;
|
||||
}
|
||||
|
||||
div {
|
||||
z-index: 10;
|
||||
h1, p {
|
||||
h1,
|
||||
p {
|
||||
flex: 1 0 100%;
|
||||
width: 100%;
|
||||
z-index: 10;
|
||||
color: var(--fg);
|
||||
text-align: center;
|
||||
max-width: 1200px;
|
||||
}
|
||||
p{
|
||||
max-width: var(--max-width);
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
}
|
||||
.imagecontainer {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url('../img/vignette.svg');
|
||||
background-size: 480px 480px;
|
||||
background-image: url("../img/vignette.svg");
|
||||
background-size: 240px;
|
||||
background-repeat: repeat-x;
|
||||
background-position: bottom;
|
||||
z-index: 1;
|
||||
|
||||
h4 {
|
||||
width: 90vw;
|
||||
/* height: auto; */
|
||||
/* min-height: 100px; */
|
||||
line-height: 1.011em;
|
||||
letter-spacing: -0em;
|
||||
color: var(--bg);
|
||||
font-size: 15vw;
|
||||
display: inline;
|
||||
opacity: 1;
|
||||
border-radius: var(--border-radius);
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
transform: rotate(-3deg);
|
||||
overflow: hidden;
|
||||
background: -webkit-linear-gradient(90deg, var(--bg) 0%,var(--bg-alt) 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
filter: blur(1px);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
section {
|
||||
.container {
|
||||
max-width: var(--max-width);
|
||||
margin: 0 auto;
|
||||
}
|
||||
flex: 1 1 100%;
|
||||
padding: 20px;
|
||||
background-color: var(--bg);
|
||||
-webkit-box-shadow: inset 0px 23px 25px -25px var(--border-alt);
|
||||
-moz-box-shadow: inset 0px 23px 25px -25px var(--border-alt);
|
||||
box-shadow: inset 0px 23px 25px -25px var(--border-alt);
|
||||
|
||||
z-index: 2;
|
||||
h2 {
|
||||
text-align: center;
|
||||
padding: 40px 0;
|
||||
}
|
||||
}
|
||||
section:first-of-type {
|
||||
-webkit-box-shadow: none;
|
||||
-moz-box-shadow: none;
|
||||
box-shadow: none;
|
||||
margin-top:0;
|
||||
margin-top: 0;
|
||||
padding-top: 40px;
|
||||
}
|
||||
.section-title {
|
||||
padding: 80px;
|
||||
}
|
||||
footer {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
width: 100%;
|
||||
padding: 160px 20px 200px 20px;
|
||||
background-color: var(--fg);
|
||||
color: var(--bg);
|
||||
justify-content: center;
|
||||
background-image: url('../img/vignette-footer.svg');
|
||||
background-size: 480px 480px;
|
||||
background-image: url("../img/vignette-footer.svg");
|
||||
background-size: 400px;
|
||||
background-repeat: repeat-x;
|
||||
background-position: top;
|
||||
box-sizing: border-box;
|
||||
z-index: 2;
|
||||
div {
|
||||
flex: 0 1 280px;
|
||||
margin:20px;
|
||||
img {
|
||||
margin: auto;
|
||||
display: block
|
||||
a {
|
||||
color: var(--bg);
|
||||
}
|
||||
.icon {
|
||||
border: 1px solid var(--bg);
|
||||
}
|
||||
.footframe {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
max-width: var(--max-width);
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
|
||||
div {
|
||||
flex: 0 1 300px;
|
||||
margin-bottom: 80px;
|
||||
img {
|
||||
margin: auto;
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
li {
|
||||
border-bottom: 1px solid var(--bg-alt);
|
||||
line-height: 2;
|
||||
font-size: 1.5em;
|
||||
a {
|
||||
font-weight: 700;
|
||||
text-decoration: none;
|
||||
color: var(--bg);
|
||||
}
|
||||
}
|
||||
}
|
||||
li {
|
||||
border-bottom: 1px solid var(--bg-alt);
|
||||
line-height: 2;
|
||||
font-size: 1.5em;
|
||||
a {
|
||||
font-weight: 700;
|
||||
text-decoration: none;
|
||||
|
||||
small {
|
||||
flex: 0 0 100%;
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
font-size: 0.8em;
|
||||
.label {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
small {
|
||||
flex: 0 0 100%;
|
||||
margin: 20px;
|
||||
text-align: center;
|
||||
.label {
|
||||
display: none;
|
||||
@media only screen and (max-width: 679px) {
|
||||
.footframe {
|
||||
justify-content: center;
|
||||
div {
|
||||
flex-grow: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.post-navigation {
|
||||
padding: 80px 0 160px 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
|
||||
h2 {
|
||||
flex: 0 0 100%;
|
||||
margin-top: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
.post-nav, .post-nav-next {
|
||||
margin: 0;
|
||||
.container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
padding: 40px;
|
||||
align-items: flex-start;
|
||||
max-width: var(--max-width);
|
||||
margin: 0 auto;
|
||||
h2 {
|
||||
flex: 0 0 100%;
|
||||
margin-top: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
.post-nav,
|
||||
.post-nav-next {
|
||||
flex: 1 0 200px;
|
||||
|
||||
flex: 0 0 200px;
|
||||
margin: 40px;
|
||||
h4 {
|
||||
font-size: 2em;
|
||||
justify-self: right;
|
||||
h4 {
|
||||
font-size: 2em;
|
||||
justify-self: right;
|
||||
}
|
||||
}
|
||||
.post-nav {
|
||||
margin: 0 40px 0 0;
|
||||
text-align: left;
|
||||
}
|
||||
.post-nav-next {
|
||||
margin: 0 0 0 40px;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
// album index
|
||||
.releases {
|
||||
padding: 80px 0;
|
||||
|
||||
}
|
||||
.container {
|
||||
max-width: var(--max-width);
|
||||
margin: 0 auto;
|
||||
padding: 40px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
h2 {
|
||||
flex: 0 0 100%;
|
||||
margin: 20px;
|
||||
}
|
||||
article {
|
||||
flex: 0 1 280px;
|
||||
max-width: 480px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
border-radius: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Streambox
|
||||
.streambox {
|
||||
text-align: center;
|
||||
line-height: 2em;
|
||||
}
|
||||
.streamer {
|
||||
max-width: var(--max-width);
|
||||
margin: 80px auto;
|
||||
padding: 0 40px;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-around;
|
||||
p {
|
||||
text-align: center !important;
|
||||
}
|
||||
.icon {
|
||||
flex: 0 0 100px;
|
||||
margin: 0;
|
||||
justify-self: center;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,21 +11,19 @@
|
|||
position: fixed;
|
||||
top:0;
|
||||
width: 100%;
|
||||
height: 80px;
|
||||
height: 60px;
|
||||
z-index: 100;
|
||||
-webkit-transition: all 400ms ease-in;
|
||||
-moz-transition: all 400ms ease-in;
|
||||
transition: all 400ms ease-in;
|
||||
-webkit-transition: all var(--anim-speed) ease-in;
|
||||
-moz-transition: all var(--anim-speed) ease-in;
|
||||
-ms-transition: all var(--anim-speed) ease-in;
|
||||
transition: all var(--anim-speed) ease-in;
|
||||
background-color: transparent;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center center;
|
||||
background-size: 95% 95%;
|
||||
-webkit-transition: all 400ms ease-in;
|
||||
-moz-transition: all 400ms ease-in;
|
||||
transition: all 400ms ease-in;
|
||||
-webkit-box-shadow: 0px 3px 29px 0px var(--border-alt);
|
||||
-moz-box-shadow: 0px 3px 29px 0px var(--border-alt);
|
||||
box-shadow: 0px 3px 29px 0px var(--border-alt);
|
||||
-webkit-box-shadow: 0px 12px 32px -25px var(--border-alt);
|
||||
-moz-box-shadow: 0px 12px 32px -25px var(--border-alt);
|
||||
box-shadow: 0px 12px 32px -25px var(--border-alt);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-end;
|
||||
|
|
@ -39,9 +37,10 @@
|
|||
.logo:hover {
|
||||
filter: blur(0px);
|
||||
opacity: 1;
|
||||
-webkit-transition: all 400ms ease-in;
|
||||
-moz-transition: all 400ms ease-in;
|
||||
transition: all 400ms ease-in;
|
||||
-webkit-transition: all var(--anim-speed) ease-in;
|
||||
-moz-transition: all var(--anim-speed) ease-in;
|
||||
-ms-transition: all var(--anim-speed) ease-in;
|
||||
transition: all var(--anim-speed) ease-in;
|
||||
background-color: var(--bg);
|
||||
|
||||
}
|
||||
|
|
@ -49,9 +48,10 @@
|
|||
filter: blur(0px);
|
||||
opacity: 1;
|
||||
background-color: var(--bg);
|
||||
-webkit-transition: all 400ms ease-in;
|
||||
-moz-transition: all 400ms ease-in;
|
||||
transition: all 400ms ease-in;
|
||||
-webkit-transition: all var(--anim-speed) ease-in;
|
||||
-moz-transition: all var(--anim-speed) ease-in;
|
||||
-ms-transition: all var(--anim-speed) ease-in;
|
||||
transition: all var(--anim-speed) ease-in;
|
||||
|
||||
}
|
||||
.navmenu {
|
||||
|
|
@ -70,7 +70,7 @@ nav {
|
|||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
background-color: var(--bg);
|
||||
border-radius: 5px;
|
||||
border-radius: var(--border-radius);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
ul {
|
||||
|
|
@ -85,14 +85,17 @@ nav {
|
|||
display: block;
|
||||
font-size: 14px
|
||||
}
|
||||
.button {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
.blurredout {
|
||||
filter: blur(5px);
|
||||
-webkit-transition: filter 400ms ease-in;
|
||||
-moz-transition: filter 400ms ease-in;
|
||||
transition: filter 400ms ease-in;
|
||||
}
|
||||
//.blurredout {
|
||||
// filter: blur(5px);
|
||||
// -webkit-transition: filter var(--anim-speed) ease-in;
|
||||
// -moz-transition: filter var(--anim-speed) ease-in;
|
||||
// transition: filter var(--anim-speed) ease-in;
|
||||
// }
|
||||
|
||||
.modalDialog {
|
||||
position: fixed;
|
||||
|
|
@ -103,9 +106,10 @@ nav {
|
|||
background: var(--bg-alt);
|
||||
z-index: 10;
|
||||
opacity:0;
|
||||
-webkit-transition: opacity 400ms ease-in;
|
||||
-moz-transition: opacity 400ms ease-in;
|
||||
transition: opacity 400ms ease-in;
|
||||
-webkit-transition: opacity var(--anim-speed) ease-in;
|
||||
-moz-transition: opacity var(--anim-speed) ease-in;
|
||||
-ms-transition: opacity var(--anim-speed) ease-in;
|
||||
transition: opacity var(--anim-speed) ease-in;
|
||||
pointer-events: none;
|
||||
|
||||
}
|
||||
|
|
@ -122,11 +126,8 @@ nav {
|
|||
position: relative;
|
||||
margin: 100px auto;
|
||||
padding: 20px;
|
||||
border-radius: 3px;
|
||||
background: rgb(0, 31, 36);
|
||||
background: -moz-linear-gradient(var(--border), var(--bg));
|
||||
background: -webkit-linear-gradient(var(--border), var(--bg));
|
||||
background: -o-linear-gradient(var(--border), var(--bg));
|
||||
border-radius: var(--border-radius);
|
||||
|
||||
}
|
||||
|
||||
.close-button {
|
||||
|
|
@ -143,7 +144,10 @@ nav {
|
|||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
border-radius: 48px;
|
||||
transition: all 400ms ease-in;
|
||||
-webkit-transition: all var(--anim-speed) ease-in;
|
||||
-moz-transition: all var(--anim-speed) ease-in;
|
||||
-ms-transition: all var(--anim-speed) ease-in;
|
||||
transition: all var(--anim-speed) ease-in;
|
||||
}
|
||||
|
||||
.close-button:hover {
|
||||
|
|
|
|||
|
|
@ -10,9 +10,10 @@
|
|||
filter: blur(0px);
|
||||
opacity: 1;
|
||||
background-color: var(--bg);
|
||||
-webkit-transition: all 400ms ease-in;
|
||||
-moz-transition: all 400ms ease-in;
|
||||
transition: all 400ms ease-in;
|
||||
-webkit-transition: all var(--anim-speed) ease-in;
|
||||
-moz-transition: all var(--anim-speed) ease-in;
|
||||
-ms-transition: all var(--anim-speed) ease-in;
|
||||
transition: all var(--anim-speed) ease-in;
|
||||
}
|
||||
|
||||
.hero {
|
||||
|
|
@ -26,7 +27,7 @@
|
|||
.noJSalbum {
|
||||
display: unset;
|
||||
flex: 0 1 400px;
|
||||
border-radius: 5px;
|
||||
border-radius: var(--border-radius);
|
||||
width: 100%;
|
||||
}
|
||||
#fixed-player {
|
||||
|
|
|
|||
|
|
@ -5,13 +5,14 @@
|
|||
.album-player {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
padding: 20px;
|
||||
padding: 0 40px;
|
||||
justify-content: space-evenly;
|
||||
flex-direction: row-reverse;
|
||||
align-items: center;
|
||||
max-width: var(--max-width);
|
||||
margin: auto;
|
||||
> div {
|
||||
|
||||
margin: 20px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -115,7 +116,7 @@ audio {
|
|||
}
|
||||
|
||||
.plTitle {
|
||||
left: 75px;
|
||||
left: 40px;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
right: 65px;
|
||||
|
|
@ -127,8 +128,8 @@ audio {
|
|||
}
|
||||
|
||||
.plNum {
|
||||
padding-left: 21px;
|
||||
width: 65px;
|
||||
padding-left: 20px;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.plLength {
|
||||
|
|
@ -209,7 +210,7 @@ a[id^="btn"]::-moz-focus-inner {
|
|||
background-color: var(--accent1);
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-height: 50vw;
|
||||
min-height: 50vh;
|
||||
text-align: left;
|
||||
.button {
|
||||
background-color: var(--accent1);
|
||||
|
|
@ -217,7 +218,7 @@ a[id^="btn"]::-moz-focus-inner {
|
|||
}
|
||||
.button:hover {
|
||||
background-color: var(--accent2);
|
||||
color: var(--fg);
|
||||
|
||||
}
|
||||
> div {
|
||||
flex: 1 1 auto;
|
||||
|
|
@ -242,7 +243,7 @@ a[id^="btn"]::-moz-focus-inner {
|
|||
.full-image {
|
||||
width: 50%;
|
||||
min-width: 280px;
|
||||
min-height: 50vw;
|
||||
min-height: 50vh;
|
||||
background-color: transparent;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
|
|
@ -256,11 +257,11 @@ a[id^="btn"]::-moz-focus-inner {
|
|||
text-align: right;
|
||||
.button {
|
||||
background-color: var(--accent2);
|
||||
color: var(--fg);
|
||||
|
||||
}
|
||||
.button:hover{
|
||||
background-color: var(--accent1);
|
||||
color: var(--bg);
|
||||
|
||||
}
|
||||
> div {
|
||||
> h2, a, p {
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
padding-top: 30px;
|
||||
.btn {
|
||||
border: 0;
|
||||
border-radius: 2px;
|
||||
border-radius: var(--border-radius);
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
box-sizing: border-box;
|
||||
|
|
|
|||
98
_sass/ethos.scss
Normal file
98
_sass/ethos.scss
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
#ethossection {
|
||||
padding: 80px 40px;
|
||||
.ethos-flex {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
max-width: var(--max-width);
|
||||
margin: auto;
|
||||
|
||||
|
||||
}
|
||||
.ethos {
|
||||
flex: 1 1 320px;
|
||||
min-width: 450px;
|
||||
height: 100%;
|
||||
|
||||
flex-direction: row;
|
||||
-webkit-transition: all var(--anim-speed) ease-in;
|
||||
-moz-transition: all var(--anim-speed) ease-in;
|
||||
-ms-transition: all var(--anim-speed) ease-in;
|
||||
transition: all var(--anim-speed) ease-in;
|
||||
margin-top: 40px;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
align-self: baseline;
|
||||
justify-content: flex-start;
|
||||
.mobile-hide{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cartouche, {
|
||||
background-color: var(--bg);
|
||||
width: 100%;
|
||||
height: unset;
|
||||
margin: 20px 0 20px 20px;
|
||||
display: block;
|
||||
border-radius: var(--border-radius);
|
||||
|
||||
}
|
||||
|
||||
.icon {
|
||||
flex: 0 0 100px;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 200px;
|
||||
margin: 20px 20px 20px 0;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
.ethos:nth-child(odd) {
|
||||
.cartouche {
|
||||
padding-right: 20px;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 769px) {
|
||||
.ethos {
|
||||
flex: 0 0 auto;
|
||||
flex-wrap: wrap;
|
||||
min-width: unset;
|
||||
max-width: unset;
|
||||
justify-content: space-between;
|
||||
margin: 20px;
|
||||
.cartouche {
|
||||
display: none;
|
||||
}
|
||||
.icon {
|
||||
margin:0;
|
||||
flex: 0 0 70px;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
border-radius: 200px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.st1 {
|
||||
fill:var(--accent2);
|
||||
-webkit-transition: all var(--anim-speed) ease-in;
|
||||
-moz-transition: all var(--anim-speed) ease-in;
|
||||
-ms-transition: all var(--anim-speed) ease-in;
|
||||
transition: all var(--anim-speed) ease-in;
|
||||
}
|
||||
.st1:hover {
|
||||
fill:var(--accent1);
|
||||
}
|
||||
|
||||
.st2 {animation: col 15s ease-in-out infinite;}
|
||||
|
||||
@keyframes col {
|
||||
0% {fill:var(--accent2);}
|
||||
50% {fill:var(--accent1);}
|
||||
100% {fill:var(--accent2);}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -74,74 +74,95 @@
|
|||
font-family: 'Jetbrain-regular';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Jetbrain Regular'), local('Jetbrain-Regular'), url(/assets/fonts/JetBrainsMono_Regular.ttf) format('truetype');
|
||||
src: local('Jetbrain Regular'), local('Jetbrain-Regular'), url(/assets/fonts/jetBrainsMono/JetBrainsMono_Regular.ttf) format('truetype'), url(/assets/fonts/jetBrainsMono/JetBrainsMono-Regular.woff) format('woff'), url(/assets/fonts/jetBrainsMono/JetBrainsMono-Regular.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Jetbrain-regular';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: local('Jetbrain Regular'), local('Jetbrain-Regular'), url(/assets/fonts/JetBrainsMono_Italic.ttf) format('truetype');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Jetbrain-regular';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: local('Jetbrain Bold'), local('Jetbrain-Bold'), url(/assets/fonts/JetBrainsMono_Bold.ttf) format('truetype');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Jetbrain-regular';
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
src: local('Jetbrain Bold'), local('Jetbrain-Bold'), url(/assets/fonts/JetBrainsMono_Bold_Italic.ttf) format('truetype');
|
||||
src: local('Jetbrain Regular'), local('Jetbrain-Regular'), url(/assets/fonts/jetBrainsMono/JetBrainsMono_Italic.ttf) format('truetype'), url(/assets/fonts/jetBrainsMono/JetBrainsMono-Italic.woff) format('woff'), url(/assets/fonts/jetBrainsMono/JetBrainsMono-Italic.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Jetbrain-Extrabold';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local('Jetbrain ExtraBold'), local('Jetbrain-ExtraBold'), url(/assets/fonts/JetBrainsMono_ExtraBold.ttf) format('truetype');
|
||||
src: local('Jetbrain ExtraBold'), local('Jetbrain-ExtraBold'), url(/assets/fonts/jetBrainsMono/JetBrainsMono_ExtraBold.ttf) format('truetype'), url(/assets/fonts/jetBrainsMono/JetBrainsMono-ExtraBold.woff) format('woff'), url(/assets/fonts/jetBrainsMono/JetBrainsMono-ExtraBold.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Jetbrain-Extrabold';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: local('Jetbrain ExtraBold'), local('Jetbrain-ExtraBold'), url(/assets/fonts/JetBrainsMono_ExtraBold_Italic.ttf) format('truetype');
|
||||
src: local('Jetbrain ExtraBold'), local('Jetbrain-ExtraBold'), url(/assets/fonts/JetBrainsMono_ExtraBold_Italic.ttf) format('truetype'), url(/assets/fonts/jetBrainsMono/JetBrainsMono-ExtraBold-Italic.woff) format('woff'), url(/assets/fonts/jetBrainsMono/JetBrainsMono-ExtraBold-Italic.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Staatliches';
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Astloch Bold'), local('Astloch-Bold'), url(/assets/fonts/Astloch-Bold.ttf) format('truetype');
|
||||
font-weight: 300;
|
||||
src: local('Poppins Light'), local('Poppins-Light'), url(/assets/fonts/poppins/Poppins-Light.ttf) format('truetype'), url(/assets/fonts/poppins/popin-light.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
src: local('Poppins Light'), local('Poppins-Light'), url(/assets/fonts/poppins/Poppins-LightItalic.ttf) format('truetype'), url(/assets/fonts/poppins/popin-light-italic.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: local('Poppins Medium'), local('Poppins-Medium'), url(/assets/fonts/poppins/Poppins-Medium.ttf) format('truetype'), url(/assets/fonts/poppins/popin-medium.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
src: local('Poppins Medium'), local('Poppins-Medium'), url(/assets/fonts/poppins/Poppins-MediumItalic.ttf) format('truetype'), url(/assets/fonts/poppins/popin-medium-italic.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Collects';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: local('Collects'), local('Collects'), url(/assets/fonts/collects.ttf) format('truetype');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
|
||||
$font: (
|
||||
title: ('Staatliches', 'Lucida Console', Monaco, monospace),
|
||||
family: ('Jetbrain-Extrabold', 'Lucida Console', Monaco, monospace),
|
||||
title: ('Collects', 'Jetbrain-Extrabold', 'Lucida Console', Monaco, monospace),
|
||||
family: ('Poppins', 'Arial', 'Helvetica', sans-serif),
|
||||
family-fixed: ('Jetbrain-Regular', 'Lucida Console', Monaco, monospace),
|
||||
weight: 400,
|
||||
weight-bold: 700,
|
||||
kerning: -0.025em,
|
||||
kerning: 0em,
|
||||
kerning-alt: 0.125em
|
||||
);
|
||||
// Palette.
|
||||
:root {
|
||||
--border-radius: 3px;
|
||||
--max-width: 1000px;
|
||||
--anim-speed: 200ms;
|
||||
|
||||
}
|
||||
|
||||
// // Palette.
|
||||
// $palette: (
|
||||
|
||||
// bg: #3c2a52,
|
||||
// bg-alt: rgba(60, 42, 82, 0.75),
|
||||
// fg: #ebdbf8,
|
||||
// fg-alt: rgba(235, 219, 248, 0.25),
|
||||
// bg: #0C0F0A,
|
||||
// bg-alt: rgba(12, 15, 10, 0.5),
|
||||
// fg: #FFFFFF,
|
||||
// fg-alt: rgba(255, 255, 255, 0.5),
|
||||
// border: #000000,
|
||||
// border-alt: rgba(0, 0, 0, 0.75),
|
||||
// accent1: #38ff59,
|
||||
// accent1-alt:rgba(56, 255, 89, 0.75),
|
||||
// accent2: #8d3ed8,
|
||||
// accent2-alt:rgba(141, 62, 216, 0.75),
|
||||
// accent1: #41EAD4,
|
||||
// accent1-alt:rgba(65, 234, 212, 0.75),
|
||||
// accent2: #FF206E,
|
||||
// accent2-alt:rgba(255, 32, 110, 0.75),
|
||||
|
||||
// );
|
||||
48
_sass/staff.scss
Normal file
48
_sass/staff.scss
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
.staff {
|
||||
max-width: var(--max-width);
|
||||
padding: 0;
|
||||
margin: auto;
|
||||
list-style: none;
|
||||
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
li {
|
||||
flex: 1 1 300px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 30px 20px;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
|
||||
.square-image {
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 200px;
|
||||
margin: 0 auto;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.name {
|
||||
margin-top: 20px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.position {
|
||||
color: var(--fg);
|
||||
font-size: 1em;
|
||||
}
|
||||
@media only screen and (max-width: 769px) {
|
||||
li {
|
||||
.square-image {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
9
_sass/svg.scss
Normal file
9
_sass/svg.scss
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#linearGradient2060 {
|
||||
stop {
|
||||
stop-color: var(--accent2);
|
||||
}
|
||||
stop:nth-child(even){
|
||||
stop-color: var(--fg);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
#trackArt {
|
||||
z-index: 5;
|
||||
overflow-x: hidden;
|
||||
flex: 1 1 50%;
|
||||
min-width: 512px;
|
||||
|
|
@ -51,14 +52,15 @@
|
|||
}
|
||||
#trackInfo {
|
||||
flex: 1 1 50%;
|
||||
|
||||
z-index: 5;
|
||||
height:100vh;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
section {
|
||||
text-align: left;
|
||||
padding: 20px;
|
||||
background-color: var(--bg);
|
||||
> * {
|
||||
margin: 20px;
|
||||
}
|
||||
|
|
@ -85,7 +87,7 @@
|
|||
|
||||
@media only screen and (max-width: 1023px) {
|
||||
#trackArt {
|
||||
|
||||
z-index: 5;
|
||||
min-width: 100%;
|
||||
section {
|
||||
position: absolute;
|
||||
|
|
@ -96,6 +98,7 @@
|
|||
}
|
||||
}
|
||||
#trackInfo {
|
||||
z-index: 5;
|
||||
height: unset;
|
||||
overflow-y: unset;
|
||||
section {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue