diff options
author | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2024-07-16 22:51:04 +0100 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2024-07-16 22:51:04 +0100 |
commit | b7edf7a86f78eb8b8500fada8b4f9ad0603cd780 (patch) | |
tree | 7c6bb1ec9b1072f89489559d36658b4fa2144fd5 | |
parent | 10debf623c1b0704cf647fa9af7cd27c22ca116b (diff) |
assets: Clean up css style, and fix rendering issue on webkit
-rw-r--r-- | html/assets/style.css | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/html/assets/style.css b/html/assets/style.css index 736521b..63f0a46 100644 --- a/html/assets/style.css +++ b/html/assets/style.css @@ -26,7 +26,7 @@ div.gallery img { margin-top: 0; } -table +table { border-collapse: collapse; } @@ -36,7 +36,7 @@ td padding: 2px; } -table, th, td +table, th, td { border: 1px solid; } @@ -74,14 +74,14 @@ img + figcaption } -pre +pre { background-color: #E9E9E7; border-radius: 5px; padding: 10px; } -blockquote +blockquote { background-color: #FCFBF7; border-radius: 5px; @@ -140,7 +140,7 @@ img.rss height: 410px; } -.contact-list, .social-media-list +.contact-list, .social-media-list { list-style: none; margin-left: 0; @@ -211,11 +211,11 @@ img.rss margin-right: 5px; } -.plant-status-text +.plant-status-text { margin: auto; } -.plant-status-text p +.plant-status-text p { margin: auto; padding-top: 10px; @@ -235,7 +235,7 @@ img.rss margin: auto; } -.page-title-header-container +.page-title-header-container { max-width: 1000px; margin: auto; @@ -279,9 +279,9 @@ a.header-link font-size: 66px; } -.animated-box +.animated-box { - height: 1.2em; + height: 1.3em; overflow: hidden; position: relative; } @@ -312,7 +312,7 @@ a.header-link .note-link { height: fit-content; - color: #353534; + color: #353534; text-decoration: none; } @@ -329,7 +329,7 @@ a.header-link margin-right: 10px } -.note-box img +.note-box img { max-width:280px; min-width: 250px; @@ -378,7 +378,7 @@ a.header-link } } -.animated-box::before +.animated-box::before { top: 0; left: 0; @@ -390,7 +390,7 @@ a.header-link background: linear-gradient(180deg, #e9e9e7, #e9e9e700); } -.animated-box::after +.animated-box::after { left: 0; bottom: 0; @@ -413,7 +413,7 @@ a.header-link color: #155fb4; } -ul.animated-name +ul.animated-name { margin: 0; padding: 0; @@ -430,13 +430,13 @@ ul.animated-name li.animated-name list-style: none; } -@keyframes scrollUp +@keyframes scrollUp { - from + from { transform: translateY(0); } - to + to { transform: translateY(-83.2%); } |