site/assets/style.css

38 lines
677 B
CSS

@font-face {
font-family: 'Ubuntu';
src: url('https://tebibyte.media/assets/fonts/ubuntu.ttf');
url('https://tebibyte.media/assets/fonts/ubuntu.woff2');
url('https://tebibyte.media/assets/fonts/ubuntu.woff');
}
* {
box-sizing: border-box;
font-family: "Ubuntu";
}
body {
background: url("stars2.gif");
color: hsl(0.0, 5%, 90%);
}
.back h5 {
text-align: left;
}
.content {
display: flex;
flex-direction: column;
background-color: hsl(0.0, 20%, 10%);
max-width: 600px;
height: auto;
margin-left: auto;
margin-right: auto;
padding: 50px;
border: 1px solid red;
}
h1, h2, h3, h4, h5, h6 {
text-align: center;
margin-top: 1em;
}