Browse Source

Header logo can just be a btn

master
Dylan Baker 3 years ago
parent
commit
1dbde5ea36
2 changed files with 1 additions and 7 deletions
  1. 0
    6
      static/style.css
  2. 1
    1
      templates/layout.html

+ 0
- 6
static/style.css View File

59
 }
59
 }
60
 
60
 
61
 .header__logo {
61
 .header__logo {
62
-  background-color: #ffffff;
63
-  border: 1px solid #383e37;
64
   font-size: 14px;
62
   font-size: 14px;
65
   font-style: italic;
63
   font-style: italic;
66
   font-weight: bold;
64
   font-weight: bold;
69
   text-decoration: none;
67
   text-decoration: none;
70
 }
68
 }
71
 
69
 
72
-.header__logo:hover {
73
-  background-color: #f0f0f0;
74
-}
75
-
76
 .form__field {
70
 .form__field {
77
   margin: 1em 0;
71
   margin: 1em 0;
78
 }
72
 }

+ 1
- 1
templates/layout.html View File

10
   <body>
10
   <body>
11
     <div class="container">
11
     <div class="container">
12
       <header class="header">
12
       <header class="header">
13
-        <a class="header__logo" href="/">bngl://ws/</a>
13
+        <a class="header__logo btn" href="/">bngl://ws/</a>
14
         {% if logged_in %}
14
         {% if logged_in %}
15
         <form action="/logout" method="POST">
15
         <form action="/logout" method="POST">
16
           <input class="btn" type="submit" value="Log out" />
16
           <input class="btn" type="submit" value="Log out" />

Loading…
Cancel
Save