first! basic start page

This commit is contained in:
Daniel Cortés
2019-04-05 01:28:32 -03:00
commit 5aefe52c18
2 changed files with 96 additions and 0 deletions

37
custom.css Normal file
View File

@@ -0,0 +1,37 @@
body {
background: #272822;
line-height: 1.4em;
letter-spacing: .1em;
}
.flex {
display: flex;
margin-left: 10vw;
justify-content: center;
height: 100vh;
flex-direction: column;
}
.title {
color: #a6e22e;
display: inline-block;
text-align: right
}
.separator {
color: #f4bf75;
display: inline-block;
}
.item {
text-decoration: none;
color: #66d9ef;
display: inline-block;
}
.item:hover {
text-decoration: none;
color: #a1efe4;
display: inline-block;
transition: color .5s;
}