40 lines
541 B
CSS
40 lines
541 B
CSS
html, body {
|
|
background-color: #141414;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.master {
|
|
position: absolute;
|
|
width: 50%;
|
|
}
|
|
header {
|
|
text-align: center;
|
|
font-size: 3.5vh;
|
|
}
|
|
#profile {
|
|
vertical-align: middle;
|
|
margin: 10vw;
|
|
}
|
|
#font, p {
|
|
font-family: sans-serif;
|
|
color: white;
|
|
}
|
|
#left {
|
|
float: left;
|
|
text-align: left;
|
|
width: 50%;
|
|
}
|
|
#right {
|
|
float: right;
|
|
text-align: right;
|
|
width: 50%;
|
|
}
|
|
a {
|
|
font-family: sans-serif;
|
|
text-decoration: none;
|
|
color: #ED8182;
|
|
}
|
|
a:hover, a:active {
|
|
font-style: italic;
|
|
}
|