This commit is contained in:
TheGiddyLimit
2024-01-01 19:34:49 +00:00
parent 332769043f
commit 8117ebddc5
1748 changed files with 2544409 additions and 1 deletions

View File

@@ -0,0 +1,70 @@
@import "vars";
.clickable {
&--link {
color: $rgb-link-blue !important;
}
}
.plain {
font-weight: initial !important;
font-style: initial !important;
text-decoration: none !important;
}
.fade {
transition: opacity $time-3-frames linear;
}
.float-clear {
clear: both;
}
.stripe- {
&even {
&:nth-child(even) {
background: $rgb-stripe-grey;
}
&--faint:nth-child(even) {
background: $rgb-stripe-grey--faint;
}
}
&odd {
&:nth-child(odd) {
background: $rgb-stripe-grey;
}
&--faint:nth-child(odd) {
background: $rgb-stripe-grey--faint;
}
}
&child- {
&even-first {
&:nth-child(even) > :first-child {
background: $rgb-stripe-grey;
}
}
}
}
.veapp {
&__ {
&ele-hoverable {
&:hover {
background: $rgb-bg--alt;
}
}
}
}
.last-mr-0:last-child {
margin-right: 0 !important;
}
// redefine this here to ensure it overrides all the important display types above
.hidden {
display: none !important;
}