-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
145 additions
and
115 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,45 @@ | ||
@import 'Variables'; | ||
@import "Variables"; | ||
|
||
div.navbar { | ||
min-height: 50px; | ||
margin-bottom: 20px; | ||
|
||
.navbar { | ||
background: $primary-color; | ||
color: $primary-color-opposite; | ||
border: 0; | ||
border-radius: 0; | ||
|
||
background: $primary-color; | ||
color: $primary-color-opposite; | ||
|
||
box-shadow: $no-box-shadow; | ||
|
||
a, .navbar-text { | ||
color: $primary-color-opposite !important; | ||
ul { | ||
margin: 0; | ||
padding: 0; | ||
// list-style: none; | ||
|
||
li { | ||
display: block; | ||
position: relative; | ||
float: left; | ||
} | ||
} | ||
|
||
a:hover, .navbar-toggle:hover, .navbar:focus { | ||
background-color: $primary-color-active !important; | ||
a { | ||
display: block; | ||
position: relative; | ||
|
||
padding: 15px 15px; | ||
|
||
line-height: 20px; | ||
|
||
color: $primary-color-opposite !important; | ||
} | ||
|
||
.navbar-toggle { | ||
background-color: $primary-color !important; | ||
a:hover { | ||
background-color: $primary-color-active !important; | ||
} | ||
|
||
.icon-bar { | ||
background-color: $primary-color-opposite !important; | ||
ul.navbar-right { | ||
float: right; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,35 @@ | ||
@import "Variables"; | ||
|
||
.panels-container { | ||
} | ||
|
||
.panel { | ||
float: left; | ||
width: 50%; | ||
} | ||
|
||
.clear { | ||
clear: both; | ||
} | ||
|
||
.panel-content { | ||
padding-right: 15px; | ||
padding-left: 15px; | ||
} | ||
|
||
.panel-heading { | ||
padding: 10px 15px; | ||
} | ||
|
||
.list-group { | ||
margin-bottom: 20px; | ||
padding-left: 0; | ||
} | ||
|
||
.list-group-item { | ||
padding: 10px 15px; | ||
margin-bottom: -1px; | ||
|
||
background-color: $secondary-color; | ||
border: $primary-border; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,11 @@ | ||
<nav class="navbar navbar-default" role="navigation"> | ||
<div class="container-fluid"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse"> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="{~}/">Home</a> | ||
</div> | ||
|
||
<div class="collapse navbar-collapse" id="navbar-collapse"> | ||
<ul class="nav navbar-nav"> | ||
<li><a href="{~}/about">About</a></li> | ||
<li><a href="{~}/messagePageExample">404 Message page example</a></li> | ||
<li><a href="{~}/exception">Exception</a></li> | ||
</ul> | ||
<ul class="nav navbar-nav navbar-right"> | ||
{LoginPanel} | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<div class="navbar"> | ||
<ul> | ||
<li><a href="{~}/">Home</a></li> | ||
<li><a href="{~}/about">About</a></li> | ||
<li><a href="{~}/messagePageExample">404 Message page example</a></li> | ||
<li><a href="{~}/exception">Exception</a></li> | ||
</ul> | ||
<ul class="navbar-right"> | ||
{LoginPanel} | ||
</ul> | ||
</div> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters