1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00
not-gwent-online/site/client/assets/sass/_nav.scss
2015-06-21 21:47:39 +02:00

44 lines
601 B
SCSS

nav {
float: left;
margin: 30px 0 0 0;
clear: both;
width: 100%;
ul {
float: left;
margin: 0;
width: 100%;
}
li {
float: left;
}
a {
color: #8798ac;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
font-size: 19px;
text-transform: uppercase;
font-weight: 300;
padding: 12px 30px;
float: left;
cursor: pointer;
height: 55px;
@include transition(color);
&:hover {
color: #c5cfda;
}
&.active {
color: $main;
text-shadow: none;
background: #080d14;
}
}
}
.sub-nav {
float: right;
}