gitnet-assets/theme.css

48 lines
795 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:00:44 +02:00
flex-wrap: row wrap;
2022-10-26 21:52:32 +02:00
}
.board-column:first-child {
2022-10-26 21:54:07 +02:00
margin-left: 0 !important;
2022-10-26 21:52:32 +02:00
}
.board-column {
2022-10-26 21:54:07 +02:00
margin-bottom: .5rem !important;
2022-10-26 22:00:44 +02:00
flex: 1 !important;
2022-10-26 22:04:52 +02:00
width: 25%:
2022-10-26 22:00:44 +02:00
}
@media screen and (max-width: 992px) {
2022-10-26 22:02:10 +02:00
.board-colomn {
2022-10-26 22:04:52 +02:00
width: 33%;
2022-10-26 22:00:44 +02:00
}
}
@media screen and (max-width: 640px) {
2022-10-26 22:02:10 +02:00
.board-colomn {
2022-10-26 22:04:52 +02:00
width: 50%;
2022-10-26 22:00:44 +02:00
}
}
@media screen and (max-width: 420px) {
2022-10-26 22:02:10 +02:00
.board-colomn {
2022-10-26 22:04:52 +02:00
width: 100%;
2022-10-26 22:00:44 +02:00
}
2022-03-07 09:55:59 +01:00
}