Added navbar, login, signup, and forgot password
This commit is contained in:
@ -22,12 +22,14 @@ html {
|
||||
background-position: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
.centered {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
margin-right: -50%;
|
||||
transform: translate(-50%, -50%);
|
||||
top: 50%;
|
||||
}
|
||||
body{
|
||||
font-size: 1.2em;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
line-height: 1.4;
|
||||
@ -65,4 +67,38 @@ p > strong {
|
||||
}
|
||||
}
|
||||
|
||||
ul.navbar {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
background-color: #333;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width:100%;
|
||||
text-align:center;
|
||||
|
||||
}
|
||||
|
||||
|
||||
li a.navbar {
|
||||
|
||||
display: block;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
li {
|
||||
float:left;
|
||||
}
|
||||
li a:hover.navbar {
|
||||
background-color: #111;
|
||||
}
|
||||
|
||||
#active {
|
||||
background-color: #4CAF50;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user