fixed up navbar design

This commit is contained in:
David Baldwynn 2015-07-05 21:37:34 -07:00
parent 6a949d1b14
commit ce8e244653
2 changed files with 17 additions and 2 deletions

View file

@ -1,9 +1,19 @@
/*Navbar Custom CSS*/
.navbar-inverse {
background-color:#fafafa;
border: 0;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover {
background-color:#ddd;
}
.navbar .navbar-brand {
font-size: 1.6em;
font-weight: 900;
color: #FA787E;
}
.navbar .navbar-brand:hover {
color: #000;
}
.navbar .navbar-brand span {
text-decoration: underline;
}

View file

@ -18,12 +18,17 @@
<label for="lastName">Last Name</label>
<input type="text" id="lastName" name="lastName" class="form-control" data-ng-model="user.lastName" placeholder="Last Name">
</div>
<div class="form-group">
<label for="email">Email</label>
<label for="lastName">Last Name</label>
<input type="text" id="lastName" name="lastName" class="form-control" data-ng-model="user.lastName" placeholder="Last Name">
</div>
<div class="form-group">
<label for="email">Email (also your username)</label>
<input type="email" id="email" name="email" class="form-control" data-ng-model="user.email" placeholder="Email">
</div>
<div class="text-center form-group">
<button type="submit" class="btn btn-large btn-primary">Save Profile</button>
<button type="submit" class="btn btn-large btn-primary">Update Profile</button>
</div>
</fieldset>