60 lines
905 B
SCSS
60 lines
905 B
SCSS
|
.header-container {
|
||
|
.hello {
|
||
|
float: right;
|
||
|
margin: 6px 10px 0 0;
|
||
|
color: #222;
|
||
|
|
||
|
.greating {
|
||
|
display: block;
|
||
|
float: left;
|
||
|
margin-right: 8px;
|
||
|
}
|
||
|
|
||
|
.settings {
|
||
|
float: right;
|
||
|
width: 15px;
|
||
|
height: 15px;
|
||
|
margin: 1px 0;
|
||
|
background-image: url(/images/icns/settings.png);
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.navigation {
|
||
|
background-color: #EEE;
|
||
|
background-image: url(/images/concrete_wall_2.png);
|
||
|
height: 30px;
|
||
|
|
||
|
li {
|
||
|
display: block;
|
||
|
float: left;
|
||
|
width: auto;
|
||
|
height: 30px;
|
||
|
margin-left: 10px;
|
||
|
color: #222;
|
||
|
line-height: 30px;
|
||
|
text-shadow: #666 0px 0px 0.5px;
|
||
|
|
||
|
&:hover {
|
||
|
cursor: pointer;
|
||
|
text-shadow: #666 0px 0px 2px;
|
||
|
}
|
||
|
|
||
|
&.logo {
|
||
|
font-size: 20px;
|
||
|
line-height: 32px;
|
||
|
font-weight: bold;
|
||
|
margin-right: 12px;
|
||
|
}
|
||
|
|
||
|
.vk_auth {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: inherit;
|
||
|
text-decoration: inherit;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|