pika-kernel-manager/data/style.css

43 lines
769 B
CSS
Raw Permalink Normal View History

2024-06-17 00:06:45 +02:00
.symbolic-accent-bg {
color: @accent_bg_color;
}
2024-06-19 00:44:47 +02:00
.size-20-font {
font-size: 20px;
}
.rounded-all-25 {
border-radius: 25px;
}
.background-accent-bg {
background: @accent_bg_color;
border-radius: 10px;
padding: 5px;
}
.background-green-bg {
background: green;
border-radius: 10px;
padding: 5px;
}
2024-06-17 07:36:38 +02:00
.background-red-bg {
2024-06-17 05:48:56 +02:00
background: #ff2a03;
border-radius: 10px;
padding: 5px;
2024-06-18 00:42:47 +02:00
}
.round-border-only-top {
border-top-right-radius: 15px;
border-top-left-radius: 15px;
2024-06-18 01:06:32 +02:00
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
2024-06-18 00:42:47 +02:00
}
.round-border-only-bottom {
border-top-right-radius: 0px;
border-top-left-radius: 0px;
2024-06-18 01:06:32 +02:00
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
2024-06-17 00:06:45 +02:00
}