Files
NodeBB/public/less/admin/header.less

42 lines
614 B
Plaintext
Raw Normal View History

2015-08-19 14:46:40 -04:00
.header {
position: relative;
background: #333;
width: 100%;
height: 200px;
margin-bottom: 50px;
2015-08-19 14:58:48 -04:00
font-size: 16px;
2015-08-19 14:46:40 -04:00
2015-08-20 13:21:12 -04:00
#main-page-title {
position: absolute;
left: 48px;
bottom: 17px;
color: #aaa;
font-size: 47px;
font-weight: 300;
}
2015-08-19 14:46:40 -04:00
> ul {
list-style-type: none;
padding: 0px;
position: absolute;
2015-08-20 12:12:55 -04:00
bottom: -11px;
2015-08-19 14:46:40 -04:00
left: 50px;
> li {
float: left;
margin-right: 30px;
2015-08-19 15:52:31 -04:00
&.active {
2015-08-20 12:12:55 -04:00
border-bottom: 4px solid @brand-primary;
2015-08-19 15:52:31 -04:00
padding-bottom: 10px;
}
2015-08-19 14:46:40 -04:00
> a {
color: white;
text-transform: uppercase;
text-decoration: none;
2015-08-19 15:52:31 -04:00
outline: none;
2015-08-19 14:46:40 -04:00
}
}
}
}