gitnet-assets/theme.css

45 lines
878 B
CSS
Raw Normal View History

2022-07-19 21:16:02 +02:00
/*
2022-03-02 17:30:12 +01:00
@import "./light-mode.css" all and (prefers-color-scheme: light);
2022-07-19 21:16:02 +02:00
*/
2022-07-19 21:07:46 +02:00
/*
2022-03-02 17:27:12 +01:00
@import "./gitea-github-theme/theme-github-dark.css" all and (prefers-color-scheme: dark);
2022-07-19 21:07:46 +02:00
*/
2022-03-07 09:55:59 +01:00
#profile-avatar, .user.profile > .ui > .ui > .ui > .ui.card > .image {
2022-10-26 21:52:32 +02:00
background: none;
2022-03-07 09:55:59 +01:00
}
#profile-avatar img, .user.profile > .ui > .ui > .ui > .ui.card > .image img {
2022-10-26 21:52:32 +02:00
border-radius: 100% 100% 100% 0;
}
.board {
2022-10-26 22:05:12 +02:00
flex-wrap: wrap;
2022-10-26 21:52:32 +02:00
}
.board-column {
2022-10-26 22:14:26 +02:00
margin-bottom: 1rem !important;
2022-10-26 22:10:43 +02:00
margin-left: .5rem !important;
margin-right: .5rem !important;
2022-10-26 22:13:24 +02:00
width: calc(25% - 1rem);
2022-10-26 22:00:44 +02:00
}
@media screen and (max-width: 992px) {
2022-10-26 22:13:54 +02:00
.board-column {
2022-10-26 22:11:50 +02:00
width: calc(33% - 1rem) !important;
2022-10-26 22:00:44 +02:00
}
}
@media screen and (max-width: 640px) {
2022-10-26 22:13:54 +02:00
.board-column {
2022-10-26 22:11:50 +02:00
width: calc(50% - 1rem) !important;
2022-10-26 22:00:44 +02:00
}
}
@media screen and (max-width: 420px) {
2022-10-26 22:13:54 +02:00
.board-column {
2022-10-26 22:11:50 +02:00
width: calc(100% - 1rem) !important;
2022-10-26 22:00:44 +02:00
}
2022-03-07 09:55:59 +01:00
}