1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-02-17 14:22:09 +00:00

50 lines
667 B
SCSS
Raw Normal View History

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