/* Main Variables */
:root {
--main-dark: black;
--main-light: white;
}
/* Global Styles */
::selection {
background: var(--main-dark);
color: var(--main-light);
text-shadow: none;
}
img::selection, svg::selection {
background: transparent;
}
/* Link color inherits from parent font color */
a {
color: inherit;
}
/* Disable / enable clicking on an element and its children */
.no-click {
pointer-events: none;
}
.can-click {
pointer-events: auto;
}
/* Target any element with a certain "word" in the class name */
[class*="spacer"] {
}
© 2022 | Old Bridge Minerals | All rights reserved
/* Main Variables */
:root {
--main-dark: black;
--main-light: white;
}
/* Global Styles */
::selection {
background: var(--main-dark);
color: var(--main-light);
text-shadow: none;
}
img::selection, svg::selection {
background: transparent;
}
/* Link color inherits from parent font color */
a {
color: inherit;
}
/* Disable / enable clicking on an element and its children */
.no-click {
pointer-events: none;
}
.can-click {
pointer-events: auto;
}
/* Target any element with a certain "word" in the class name */
[class*="spacer"] {
}