summaryrefslogtreecommitdiff
path: root/wwwroot/styles
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-23 22:38:34 +1000
committerJake Mannens <jake@asger.xyz>2026-06-11 01:16:00 +1000
commitc5af95bd7af2c0205a0f68d67e86d0dbeba7c879 (patch)
tree2d145a92c7783517051b3268d8ebeb8f113b7721 /wwwroot/styles
parentc1335c865e3dd1d993e26df03fa79c353954ca75 (diff)
Deleted client-side Razor pages
Diffstat (limited to 'wwwroot/styles')
-rw-r--r--wwwroot/styles/global.css92
1 files changed, 0 insertions, 92 deletions
diff --git a/wwwroot/styles/global.css b/wwwroot/styles/global.css
index 9de9fc1..7ed4479 100644
--- a/wwwroot/styles/global.css
+++ b/wwwroot/styles/global.css
@@ -83,91 +83,6 @@ code {
white-space: pre-line;
}
-button, input[type=submit] {
- align-items: center;
- background: var(--col-button-pri);
- border-radius: 10px;
- border: none;
- box-sizing: border-box;
- color: white;
- cursor: pointer;
- display: flex;
- height: 30px;
- margin: 10px 5px 0 5px;
- padding: 0 9px 0 9px;
- user-select: none;
-}
-
-button:disabled {
- color: var(--col-button-disabled) !important;
- background: var(--col-button-disabled-bg) !important;
-}
-
-button.warning {
- background: var(--col-button-warning);
-}
-
-button > img {
- height: 15px;
- margin-right: 5px;
- width: 15px;
-}
-
-@media (hover: none) and (pointer: coarse) {
- button > :not(:first-child) {
- display: none;
- }
-
- button > img {
- height: 20px;
- margin-right: 0;
- padding: 8px;
- width: 20px;
- }
-}
-
-@media (hover: hover) {
- button.warning:hover {
- background: var(--col-button-warning-hl);
- }
-}
-
-button.warning:active {
- color: var(--col-button-warning);
- background: white;
-}
-
-button.secondary {
- background: var(--col-button-sec);
-}
-
-@media (hover: hover) {
- button.secondary:hover {
- background: var(--col-button-sec-hl);
- }
-}
-
-button.secondary:active {
- background: white;
- color: var(--col-button-sec);
-}
-
-button.secondary:disabled {
- color: var(--col-button-sec-disabled) !important;
- background: var(--col-button-sec-disabled-bg) !important;
-}
-
-@media (hover: hover) {
- button:hover, input[type=submit]:hover {
- background: var(--col-button-pri-hl);
- }
-}
-
-button:active, input[type=submit]:active {
- background: white;
- color: var(--col-button-pri);
-}
-
input, textarea {
background: rgba(0, 0, 0, 0);
border-radius: 5px;
@@ -181,13 +96,6 @@ input {
height: 25px !important;
}
-/* disable hotkey underlines on mobile devices */
-@media (hover: none) and (pointer: coarse) {
- button > u {
- text-decoration: none !important;
- }
-}
-
/* necessary for use inside flex containers */
hr {
width: 100%;