outreaching/src/App.css

40 lines
439 B
CSS
Raw Normal View History

2021-04-09 21:23:19 +02:00
* {
box-sizing: border-box;
}
2021-04-09 21:23:19 +02:00
.base {
display: flex;
}
2021-04-09 21:23:19 +02:00
.filters {
width: 10%;
2021-04-10 07:40:29 +02:00
position: fixed;
2021-04-09 21:23:19 +02:00
align-self: flex-start;
top: 200px;
right: 10%;
padding: 0%;
}
2021-04-09 21:23:19 +02:00
.feeds {
margin: 2em 10%;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
width: 60%;
}
2021-04-10 06:14:15 +02:00
.user {
margin: 2em 10%;
width: 80%;
}
.user-card {
width: 20%;
margin-right: 5%;
text-align: center;
}
.user-profile {
width: 75%;
}