webionite.com/index.css

52 lines
671 B
CSS

* {
box-sizing: border-box;
text-align: justify;
}
body {
margin: 0;
padding: 0;
color: #FFF;
}
.top-body {
display: flex;
}
.left-pane {
width: 60%;
background-color: #121212;
}
.right-pane {
position: fixed;
right: 0;
width: 40%;
background-image: url("images/abstract_squares.jpg");
background-size: cover;
height: 100vh;
display: flex;
align-items: flex-end;
justify-content: flex-start;
}
.page {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 3em;
}
.title-image {
width: 400px;
}
h1 {
font-family: D3 Euronism;
font-weight: 100;
font-size: 4em;
line-height: 0;
}