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