add navigation styling
This commit is contained in:
parent
b18eaa102c
commit
ce70636c1a
1 changed files with 50 additions and 3 deletions
|
@ -1,8 +1,55 @@
|
||||||
/*Custom CSS*/
|
/*Custom CSS*/
|
||||||
.header {
|
|
||||||
margin-top: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
td button, td .button {
|
td button, td .button {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.errorm {
|
||||||
|
color: red;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Navigation */
|
||||||
|
|
||||||
|
nav {
|
||||||
|
margin: 15px 0px 35px;
|
||||||
|
padding: 0 0 0 15px;
|
||||||
|
border-bottom: 1px solid #E1E1E1;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul, nav h4 {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
display: inline-block;
|
||||||
|
color: #e9165c;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul {
|
||||||
|
margin-top: 8px;
|
||||||
|
float: right;
|
||||||
|
font-size: 12pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav li {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav li a {
|
||||||
|
color: #222;
|
||||||
|
text-decoration: none;
|
||||||
|
-webkit-transition: color .3s, background .3s, border .3s;
|
||||||
|
transition: color .3s, background .3s, border .3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav li img {
|
||||||
|
height: 35px;
|
||||||
|
border-radius: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user {
|
||||||
|
padding: 0 0 0 15px;
|
||||||
|
font-weight: 600;
|
||||||
|
text-transform: capitalize;
|
||||||
|
border-left: 1px solid #E1E1E1;
|
||||||
|
color: #222;
|
||||||
}
|
}
|
Reference in a new issue