43 lines
799 B
SCSS
Raw Permalink Normal View History

2020-06-09 23:41:08 +02:00
@import "tailwindcss/base";
@import "tailwindcss/utilities";
@import "tailwindcss/components";
2020-06-10 15:15:00 +02:00
2020-06-18 01:23:33 +02:00
.accentuated-t {
border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.accentuated-r {
border-right: 2px solid rgba(0, 0, 0, 0.2);
}
.accentuated-b {
border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}
.accentuated-l {
border-left: 2px solid rgba(0, 0, 0, 0.1);
}
.accentuated {
@apply accentuated-t accentuated-r accentuated-b accentuated-l
2020-06-18 01:23:33 +02:00
}
.accentuated-x {
@apply accentuated-r accentuated-l
2020-06-18 01:23:33 +02:00
}
.accentuated-y {
@apply accentuated-t accentuated-b
2020-06-18 01:23:33 +02:00
}
.hover\:glow-orange:hover {
box-shadow: 0 0 3px 1px rgba(227, 152, 39, 0.8);
}
.hover\:glow-green:hover {
box-shadow: 0 0 3px 1px rgba(94, 182, 99, 0.8);
}
.hover\:glow-red:hover {
box-shadow: 0 0 3px 1px rgba(254, 90, 90, 0.8);
2020-06-10 15:15:00 +02:00
}