Browse Source

Update the css for the information pages.

Lee Morgan 5 years ago
parent
commit
6167656e37
2 changed files with 49 additions and 1 deletions
  1. 1 1
      views/informationPages/help.ejs
  2. 48 0
      views/informationPages/information.css

+ 1 - 1
views/informationPages/help.ejs

@@ -5,7 +5,7 @@
         <meta content="width=device-width, initial-scale=1" name="viewport"/>
         <title>The Subline</title>
         <link rel="icon" type="img/png" href="/shared/images/logo.png">
-        <link rel="stylesheet" href="/shared/shared.css">
+        <link rel="stylesheet" href="/shared/css/header.css">
         <link rel="stylesheet" href="/informationPages/information.css">
         <link href="https://fonts.googleapis.com/css?family=Saira&display=swap" rel="stylesheet">
     </head>

+ 48 - 0
views/informationPages/information.css

@@ -1,3 +1,51 @@
+*{margin:0;padding:0;}
+
+.header{
+    display: flex;
+    justify-content: space-between;
+    background: #001b2d;
+    width: 100%;
+    height: 75px;
+}
+
+    .headerStart{
+        display: flex;
+        align-items:center;
+        text-decoration: none;
+        margin-left: 25px;
+        width: 275px;
+    }
+
+        .headerStart img{
+            max-height: 75%;
+        }
+
+        .headerLogo{
+            color: white;
+            font-size: 25px;
+            margin-left: 10px;
+        }
+
+        .mobileHomeButton{
+            display: none;
+        }
+
+    .headerEnd{
+        display: flex;
+        align-items: center;
+        justify-content: flex-end;
+        margin-right: 25px;
+        
+    }
+
+        .headerEnd > *{
+            margin-left: 20px;
+        }
+
+        .headerEnd a{
+            color: rgb(255, 99, 107);
+        }
+
 body{
     display: flex;
     flex-direction: column;