31 lines
528 B
SCSS
31 lines
528 B
SCSS
|
.home {
|
||
|
text-align: center;
|
||
|
.poetry {
|
||
|
font-size: 1em;
|
||
|
width: auto;
|
||
|
max-width: 26em;
|
||
|
margin: 0 auto;
|
||
|
padding: 5em 1em 10em;
|
||
|
}
|
||
|
.links {
|
||
|
position: absolute;
|
||
|
bottom: 10%;
|
||
|
left: 5%;
|
||
|
right: 5%;
|
||
|
font-size: 1.5em;
|
||
|
}
|
||
|
.links-item {
|
||
|
padding: $homeLinksPadding;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
.life {
|
||
|
color: #f37055;
|
||
|
}
|
||
|
.tech {
|
||
|
color: #a166ab;
|
||
|
}
|
||
|
.about {
|
||
|
color: #07b39b;
|
||
|
}
|
||
|
}
|