summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorTinWoodman92 <chrhodgden@gmail.com>2024-01-13 18:58:07 -0600
committerTinWoodman92 <chrhodgden@gmail.com>2024-01-13 18:58:07 -0600
commit82b787e494b077ad0295561549842d05b9b60ad1 (patch)
tree732801ed0ada7ca319e3fedf98be044c16ad7653 /style.css
parent58ac5795be2e6b5269fcb2815aa6badb13185fe2 (diff)
added portait to about page.
Diffstat (limited to 'style.css')
-rw-r--r--style.css34
1 files changed, 20 insertions, 14 deletions
diff --git a/style.css b/style.css
index 9c8d2dc..4678389 100644
--- a/style.css
+++ b/style.css
@@ -55,6 +55,22 @@
}
}
+@media (max-width: 600px) {
+ html {
+ font-size: 1.5rem;
+ }
+}
+
+@media (min-width: 601px) {
+ html {
+ font-size: 1rem;
+ }
+}
+
+.dark-mode-container {
+ float: right;
+}
+
::selection {
background-color: var(--contrast-color);
color: hsl(0, 0%, var(--background-lightness));
@@ -84,6 +100,7 @@ hr {
nav {
color: var(--foreground-accent-color);
text-align: center;
+ clear: both;
}
ul {
@@ -129,18 +146,7 @@ a:hover {
color: hsl(calc(var(--contrast-hue) - 150), 100%, var(--contrast-lightness))
}
-.dark-mode-container {
+img.self-portrait {
float: right;
-}
-
-@media (max-width: 600px) {
- html {
- font-size: 1.5rem;
- }
-}
-
-@media (min-width: 601px) {
- html {
- font-size: 1rem;
- }
-}
+ margin-right: 1rem;
+} \ No newline at end of file