[Design] Add Title, Buttons.
This commit is contained in:
parent
d5005fee24
commit
a721c40bf8
12
index.html
12
index.html
|
@ -10,8 +10,20 @@
|
||||||
<img src="assets/images/cloud.svg" class="clouds" id="cloud1" />
|
<img src="assets/images/cloud.svg" class="clouds" id="cloud1" />
|
||||||
<img src="assets/images/cloud.svg" class="clouds" id="cloud2" />
|
<img src="assets/images/cloud.svg" class="clouds" id="cloud2" />
|
||||||
<div class="top">
|
<div class="top">
|
||||||
|
<div class="wrapper">
|
||||||
|
<div class="content">
|
||||||
|
<h1>Redacted Life</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom">
|
<div class="bottom">
|
||||||
|
<div class="wrapper">
|
||||||
|
<div class="content">
|
||||||
|
<a class="button" href="/feed.xml">Subscribe</a>
|
||||||
|
<a class="button" href="mailto:hello@redacted.life">Contact</a>
|
||||||
|
<a class="button" href="/archives/">Archives</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,17 +1,12 @@
|
||||||
$cloud_width: 200px;
|
$cloud_width: 200px;
|
||||||
|
|
||||||
|
@import 'fonts';
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
.top {
|
|
||||||
background-image: linear-gradient(#24d3ff, #aaeeff);
|
|
||||||
height: 70vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottom {
|
@include body-font;
|
||||||
background-image: linear-gradient(#26a4c4, #afdde9);
|
|
||||||
height: 30vh;
|
|
||||||
}
|
|
||||||
.clouds {
|
.clouds {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: $cloud_width;
|
width: $cloud_width;
|
||||||
|
@ -33,8 +28,65 @@ body {
|
||||||
animation-duration: 15s;
|
animation-duration: 15s;
|
||||||
transform: rotateY(180deg);
|
transform: rotateY(180deg);
|
||||||
}
|
}
|
||||||
|
.top {
|
||||||
|
background-image: linear-gradient(#24d3ff, #aaeeff);
|
||||||
|
min-height: 70vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: end;
|
||||||
|
.wrapper {
|
||||||
|
height: 100%;
|
||||||
|
align-items: flex-end;
|
||||||
|
padding-bottom: 3em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bottom {
|
||||||
|
background-image: linear-gradient(#26a4c4, #afdde9);
|
||||||
|
min-height: 30vh;
|
||||||
|
.wrapper {
|
||||||
|
align-items: flex-start;
|
||||||
|
padding-top: 3em;
|
||||||
|
.content {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
.button {
|
||||||
|
font-size: 1.5em;
|
||||||
|
color: #000;
|
||||||
|
padding: 1em;
|
||||||
|
border-color: #000;
|
||||||
|
border-width: 3px;
|
||||||
|
border-style: solid;
|
||||||
|
border-radius: 1.5em;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.button:hover, .button:active {
|
||||||
|
background-color: #000;
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.wrapper {
|
||||||
|
position: relative;
|
||||||
|
width: 100vw;
|
||||||
|
box-sizing: border-box;
|
||||||
|
z-index: 100;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
.content {
|
||||||
|
box-sizing: border-box;
|
||||||
|
max-width: 800px;
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
@include title-font;
|
||||||
|
font-size: 4em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@keyframes move_right {
|
@keyframes move_right {
|
||||||
|
|
Loading…
Reference in New Issue