summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
Diffstat (limited to 'css')
-rw-r--r--css/style.css28
1 files changed, 28 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css
index bfcc57d..a50595f 100644
--- a/css/style.css
+++ b/css/style.css
@@ -65,6 +65,8 @@ hr {
margin-bottom: 0.25rem;
}
+
+
/* Cool Button */
/* CSS Button - https://getcssscan.com/css-buttons-examples UIForms #74 */
@@ -169,11 +171,37 @@ hr {
/* Media Queries */
@media screen and (max-width: 1000px) {
+ .hide-mobile {
+ display: none;
+ }
+
body {
flex-direction: column;
}
#nav {
width: 100%;
+ background: #a6b198;
+ height: 1.9rem;
+ overflow: hidden;
+ padding: 0rem;
+ padding-top: 0.5rem;
+ padding-bottom: 0.5rem;
+ position: absolute;
+ }
+
+ #logo {
+ width: 2rem;
+ }
+
+ #logo-wrapper {
+ display: flex;
+ align-items: center;
+ }
+}
+
+@media screen and (min-width: 1000px) {
+ .hide-desktop {
+ display: none;
}
}