42 lines
711 B
CSS
42 lines
711 B
CSS
@font-face {
|
|
font-family: main-serif-font;
|
|
src: url(fonts/font.ttf);
|
|
}
|
|
|
|
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
background-color: black;
|
|
font-family: main-serif-font;
|
|
}
|
|
|
|
#feed #image {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-image: url('placeholder.png');
|
|
}
|
|
|
|
#feed #image #userbadge {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
left: 20px;
|
|
padding: 10px;
|
|
border-radius: 30px;
|
|
background-color: #fd3a0479;
|
|
font-weight: bold;
|
|
display: flex;
|
|
}
|
|
|
|
#feed #image #userbadge .name {
|
|
align-self: center;
|
|
margin-left: 15px;
|
|
margin-right: 15px;
|
|
color: white;
|
|
}
|
|
|
|
#feed #image #userbadge .avatar {
|
|
border-radius: 50%;
|
|
} |