52 lines
852 B
CSS
Raw Normal View History

2024-06-17 01:06:45 +03:00
.symbolic-accent-bg {
color: @accent_bg_color;
}
2024-06-19 01:44:47 +03: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 08:36:38 +03:00
.background-red-bg {
2024-06-17 06:48:56 +03:00
background: #ff2a03;
border-radius: 10px;
padding: 5px;
2024-06-18 01:42:47 +03:00
}
.round-border-only-top {
border-top-right-radius: 15px;
border-top-left-radius: 15px;
2024-06-18 02:06:32 +03:00
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
2024-06-18 01:42:47 +03:00
}
.round-border-only-bottom {
border-top-right-radius: 0px;
border-top-left-radius: 0px;
2024-06-18 02:06:32 +03:00
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
2024-10-26 22:58:27 +03:00
}
.black-color-text {
color: black;
}
.white-color-text {
color: white;
}