upgrade setto
This commit is contained in:
parent
479cff7a23
commit
f15d28a769
84 changed files with 4207 additions and 593 deletions
|
|
@ -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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue