gitnet-assets/theme.css

100 lines
1.7 KiB
CSS
Raw Normal View History

2023-05-18 21:35:08 +02:00
@font-face {
font-family: 'Ubuntu';
src: url('./fonts/ubuntu-light.woff') format('woff');
}
2023-05-18 21:31:55 +02:00
2023-05-18 21:40:32 +02:00
@font-face {
font-family: 'UbuntuMono';
2023-05-18 21:41:34 +02:00
src: url('./fonts/ubuntu-mono.ttf');
2023-05-18 21:40:32 +02:00
}
2022-11-07 08:41:40 +01:00
:root {
2023-05-18 21:35:08 +02:00
--fonts-override: 'Ubuntu';
2022-11-07 08:41:40 +01:00
}
2022-03-07 09:55:59 +01:00
2023-05-18 21:40:32 +02:00
.code-block, .code-block code {
font-family: 'UbuntuMono';
}
2022-12-30 13:23:05 +01:00
#navbar .active {
2023-01-16 20:58:40 +01:00
background: var(--color-hover) !important;
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;
}
2024-01-24 19:53:42 +01:00
/*
2022-10-26 21:52:32 +02:00
.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
}
2024-01-24 19:53:42 +01:00
*/
2023-04-27 18:14:11 +02:00
.action-view-right {
margin-left: 10px;
2023-04-27 18:26:43 +02:00
margin-bottom: 10px;
2023-04-27 18:14:11 +02:00
border-radius: 5px;
}
2023-05-21 16:32:14 +02:00
body.is-embeded .main.menu,
body.is-embeded .header-wrapper,
2023-05-21 16:35:01 +02:00
body.is-embeded .repo-button-row,
2023-07-27 17:40:03 +02:00
body.is-embeded footer,
body.is-embeded #navbar
2023-05-21 16:32:14 +02:00
{
2023-05-21 16:32:50 +02:00
display: none !important;
2023-05-21 16:32:14 +02:00
}
2023-05-21 16:35:01 +02:00
2023-05-21 16:35:29 +02:00
body.is-embeded > .full.height,
body.is-embeded .ui.container {
2023-05-21 16:35:01 +02:00
padding: 0;
2023-05-21 16:36:04 +02:00
margin: 0 !important;
2023-07-27 17:41:51 +02:00
}
2023-07-27 17:42:36 +02:00
body.is-embeded .page-content > .ui.container {
2023-07-27 17:41:51 +02:00
max-width: 100% !important;
width: auto !important;
2023-05-21 16:35:01 +02:00
}
2023-05-21 16:38:06 +02:00
2023-05-21 16:40:03 +02:00
body.is-embeded .page-content {
padding: 0;
2023-05-21 17:00:22 +02:00
margin-left: 2px;
margin-right: 2px;
2023-05-21 17:01:10 +02:00
margin-top: 1px;
2023-05-21 17:00:52 +02:00
margin-bottom: 0;
2023-05-21 16:40:03 +02:00
}
2023-07-25 23:32:13 +02:00
.profile.page-content .ui.ui.ui.container:not(.fluid) {
2023-07-25 23:31:33 +02:00
max-width: 100%;
}