gitnet-assets/theme.css
Simon Vieille 33d7486eb8
update css
2022-12-30 13:23:05 +01:00

45 lines
793 B
CSS

:root {
--color-hover: #259bef;
}
#navbar .active {
background: var(--color-hover);
}
#profile-avatar, .user.profile > .ui > .ui > .ui > .ui.card > .image {
background: none;
}
#profile-avatar img, .user.profile > .ui > .ui > .ui > .ui.card > .image img {
border-radius: 100% 100% 100% 0;
}
.board {
flex-wrap: wrap;
}
.board-column {
margin-bottom: 1rem !important;
margin-left: .5rem !important;
margin-right: .5rem !important;
width: calc(25% - 1rem);
}
@media screen and (max-width: 992px) {
.board-column {
width: calc(33% - 1rem) !important;
}
}
@media screen and (max-width: 640px) {
.board-column {
width: calc(50% - 1rem) !important;
}
}
@media screen and (max-width: 420px) {
.board-column {
width: calc(100% - 1rem) !important;
}
}