mirror of
https://github.com/exane/not-gwent-online
synced 2024-10-31 10:36:53 +00:00
50 lines
667 B
SCSS
50 lines
667 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();
|
|
|
|
&:hover {
|
|
color: #c5cfda;
|
|
}
|
|
|
|
&.active {
|
|
color: $main;
|
|
text-shadow: none;
|
|
background: #080d14;
|
|
}
|
|
}
|
|
}
|
|
|
|
.sub-nav {
|
|
float: right;
|
|
|
|
a {
|
|
padding: 12px;
|
|
color: $main;
|
|
text-shadow: none;
|
|
}
|
|
} |