139 lines
2.6 KiB
CSS
Raw Normal View History

2024-01-18 17:16:26 +03:00
.small_error_text {
2024-01-18 23:34:31 +03:00
font-size: 14px;
2024-01-15 00:31:40 +03:00
color: red;
}
2024-02-16 10:51:28 +03:00
.small_warn_text {
font-size: 14px;
color: orange;
}
.small_valid_text {
font-size: 14px;
color: green;
}
.small_fg_text {
2024-08-24 07:16:18 +03:00
font-size: 18px;
}
2024-01-20 20:48:32 +03:00
.big_error_text {
font-size: 32px;
color: red;
}
2024-01-15 00:31:40 +03:00
.header_sized_text {
font-size: 32px;
}
.medium_sized_text {
font-size: 18px;
}
.valid-action {
background-color:green;
color: white;
}
2024-08-06 19:08:03 +03:00
.rounded-all-25 {
border-radius: 25px;
}
.rounded-all-25-with-padding {
border-radius: 25px;
padding: 10px;
}
2024-08-07 00:51:14 +03:00
.round-border-only-top {
border-top-right-radius: 15px;
border-top-left-radius: 15px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
}
2024-08-08 00:53:45 +03:00
.round-border-only-top-with-padding {
border-top-right-radius: 15px;
border-top-left-radius: 15px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
padding-top: 3px;
padding-right: 3px;
padding-left: 3px;
}
.round-all-scroll {
border-top-right-radius: 15px;
border-top-left-radius: 15px;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
padding-top: 3px;
padding-right: 3px;
padding-left: 3px;
padding-bottom: 3px;
}
.round-all-scroll-no-padding {
border-top-right-radius: 15px;
border-top-left-radius: 15px;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
padding-bottom: 0px;
}
.round-border-only-top-with-no-padding {
border-top-right-radius: 15px;
border-top-left-radius: 15px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
padding-bottom: 0px;
}
2024-08-07 00:51:14 +03:00
.round-border-only-bottom {
border-top-right-radius: 0px;
border-top-left-radius: 0px;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
2024-08-08 00:53:45 +03:00
}
.no-round-borders {
border-top-right-radius: 0px;
border-top-left-radius: 0px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
padding-bottom: 0px;
2024-08-16 03:09:49 +03:00
}
.accent-blink {
background-color: @accent_bg_color;
animation:blink 1s linear infinite;
}
@keyframes blink{
0%{opacity: 1;}
25%{opacity: 0.75;}
50%{opacity: 0.5;}
75%{opacity: 0.75;}
100%{opacity: 1;}
}
2024-08-16 03:09:49 +03:00
.green-trough trough {
background-color:green;
color:green;
}
.green-text {
color:green;
}
.accent-text {
2024-08-16 03:10:06 +03:00
color: @accent_bg_color;
2024-08-07 00:51:14 +03:00
}