gitnet-assets/theme.css

53 lines
1,016 B
CSS
Raw Normal View History

2022-11-07 08:41:40 +01:00
:root {
2023-01-16 20:57:07 +01:00
--color-hover: #d46ba3;
2022-12-30 14:39:25 +01:00
--color-primary-light-1: #4793cc;
2022-12-30 14:40:51 +01:00
--color-primary: #4793cc;
2023-01-16 20:56:33 +01:00
--color-primary: #4793cc;
2022-11-07 08:41:40 +01:00
}
2022-03-07 09:55:59 +01:00
2022-12-30 13:23:05 +01:00
#navbar .active {
2023-01-16 20:56:33 +01:00
/* background: var(--color-hover) !important; */
background: #d46ba3;
2023-01-16 20:52:50 +01:00
}
#navbar {
2023-01-16 20:53:40 +01:00
background: linear-gradient(45deg,#d46ba3,#d4885c 29%,#d4b25d 66%,#d46ba3);
2022-12-30 13:23:05 +01: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:19:00 +02:00
.board-column {
width: calc(33% - 1rem) !important;
}
2022-10-26 22:00:44 +02:00
}
@media screen and (max-width: 640px) {
2022-10-26 22:19:00 +02:00
.board-column {
width: calc(50% - 1rem) !important;
}
2022-10-26 22:00:44 +02:00
}
@media screen and (max-width: 420px) {
2022-10-26 22:19:00 +02:00
.board-column {
width: calc(100% - 1rem) !important;
}
2022-03-07 09:55:59 +01:00
}