grim/peacock

13d711f5f347
Get the server running with the basic static stuff
html {
margin: 0;
padding: 0;
}
body {
background-color: #bcd765 !important;
font-family: 'Source Code Pro', monospace !important;
font-weight: bold !important;
font-style: normal !important;
margin: 0;
padding: 0;
}
#app {
height: 100vh;
width: 100%;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
}
div.title-block {
grid-row: 1;
grid-column: 1;
}
div.name {
font-size: xx-large;
}
div.titles {
font-size: x-large;
}
div.vcard-container {
grid-row: 2;
grid-column: 1;
display: grid;
grid-template-rows: repeat(2, 1fr);
}
div.vcard-wrapper {
grid-row: 2;
}
div.vcard {
display: inline-block;
font-size: large;
background-color: #272822;
}
div.vcard i {
width: 1em;
}
div.vcard a {
text-decoration: none;
color: #e6db74;
}
div.reaper {
grid-column: 2;
grid-row: 1 / 3;
background-image: url('/img/grim-transparentish.png');
background-size: 100vh;
background-repeat: no-repeat;
}
.operator {
color: #f92672;
}
.identifier {
color: #f5f5d8;
}
.token {
color: #f5f5d8;
}
.string {
color: #e6db74;
}