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

48 lines
631 B
SCSS
Raw Normal View History

2015-06-21 14:34:27 +00:00
nav {
float: left;
margin: 30px 0 0 0;
clear: both;
2015-06-21 19:47:39 +00:00
width: 100%;
2015-06-21 14:34:27 +00:00
ul {
float: left;
margin: 0;
2015-06-21 19:47:39 +00:00
width: 100%;
2015-06-21 14:34:27 +00:00
}
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;
2015-06-21 19:47:39 +00:00
padding: 12px 30px;
2015-06-21 14:34:27 +00:00
float: left;
2015-06-21 18:29:07 +00:00
cursor: pointer;
2015-06-21 19:20:17 +00:00
height: 55px;
2015-06-21 14:34:27 +00:00
@include transition(color);
&:hover {
color: #c5cfda;
}
&.active {
color: $main;
text-shadow: none;
2015-06-21 18:29:07 +00:00
background: #080d14;
2015-06-21 14:34:27 +00:00
}
}
2015-06-21 19:47:39 +00:00
}
.sub-nav {
float: right;
2015-06-22 07:28:08 +00:00
a {
padding: 12px;
}
2015-06-21 14:34:27 +00:00
}