summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Micay <daniel.micay@grapheneos.org>2025-04-06 22:36:38 -0400
committerDaniel Micay <daniel.micay@grapheneos.org>2025-04-06 22:36:38 -0400
commit1920456ab08e1111600b62382b53fa11f3ce31bd (patch)
treec8c4bb33205fa67f4c85ba977c1d9350232683f6
parent7a150800bd6d792ff69cd5655683297c05f43010 (diff)
replace legacy rgba with rgb
-rw-r--r--static/main.css10
1 files changed, 5 insertions, 5 deletions
diff --git a/static/main.css b/static/main.css
index 899a7053..9db94b18 100644
--- a/static/main.css
+++ b/static/main.css
@@ -14,7 +14,7 @@ body {
line-height: 1.5;
letter-spacing: 0.009375rem;
background-color: #fafafa; /* grey50 */
- color: rgba(0 0 0 / 87%); /* 87% black */
+ color: rgb(0 0 0 / 87%); /* 87% black */
margin: 0;
padding: 0;
overflow-y: scroll;
@@ -34,7 +34,7 @@ a:hover {
}
h1 a, h1 a:visited, h2 a, h2 a:visited, h3 a, h3 a:visited, h4 a, h4 a:visited, h5 a, h5 a:visited, h6 a, h6 a:visited {
- color: rgba(0 0 0 / 87%); /* 87% black */
+ color: rgb(0 0 0 / 87%); /* 87% black */
}
h1 {
@@ -188,7 +188,7 @@ button:hover, .button:hover {
button:focus, .button:focus {
background-color: #2f73b4; /* button pressed on Android */
- box-shadow: 0 2px 4px -1px rgba(0 0 0 / 20%), 0 4px 5px 0 rgba(0 0 0 / 14%), 0 1px 10px 0 rgba(0 0 0 / 12%);
+ box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%);
}
button:disabled {
@@ -439,7 +439,7 @@ details[open] summary {
@media (prefers-color-scheme: dark) {
body {
background: #121212;
- color: rgba(255 255 255 / 87%); /* 87% white */
+ color: rgb(255 255 255 / 87%); /* 87% white */
}
a {
@@ -451,7 +451,7 @@ details[open] summary {
}
h1 a, h1 a:visited, h2 a, h2 a:visited, h3 a, h3 a:visited, h4 a, h4 a:visited, h5 a, h5 a:visited, h6 a, h6 a:visited {
- color: rgba(255 255 255 / 87%); /* 87% white */
+ color: rgb(255 255 255 / 87%); /* 87% white */
}
button, .button, .button:visited {