outreaching/src/App.css

42 lines
480 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 {
2021-04-10 10:51:35 +02:00
margin-top: 2em;
2021-04-09 21:23:19 +02:00
width: 10%;
2021-04-10 10:51:35 +02:00
position: sticky;
2021-04-09 21:23:19 +02:00
align-self: flex-start;
2021-04-10 10:51:35 +02:00
top: 2em;
2021-04-09 21:23:19 +02:00
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;
2021-04-10 10:51:35 +02:00
align-items: center;
2021-04-09 21:23:19 +02:00
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%;
}