2012-06-12 13:58:44 +02:00
|
|
|
/*
|
|
|
|
* Main Menu of Application
|
|
|
|
*
|
|
|
|
*/
|
2012-09-05 22:00:10 +02:00
|
|
|
ul.main_menu {
|
2012-06-12 13:58:44 +02:00
|
|
|
margin: auto;
|
2012-11-23 17:33:43 +01:00
|
|
|
margin: 30px 0;
|
2012-12-06 15:54:53 +01:00
|
|
|
margin-top: 10px;
|
2013-01-31 10:22:06 +01:00
|
|
|
height: 38px;
|
2012-11-23 17:33:43 +01:00
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
2012-09-05 22:00:10 +02:00
|
|
|
.count {
|
2012-06-12 13:58:44 +02:00
|
|
|
position: relative;
|
2012-11-23 17:33:43 +01:00
|
|
|
top: -1px;
|
|
|
|
display: inline-block;
|
|
|
|
height: 15px;
|
|
|
|
margin: 0 0 0 5px;
|
|
|
|
padding: 0 8px 1px 8px;
|
|
|
|
height: auto;
|
|
|
|
font-size: 0.82em;
|
|
|
|
line-height: 14px;
|
|
|
|
text-align: center;
|
|
|
|
color: #777;
|
2012-06-12 13:58:44 +02:00
|
|
|
}
|
2012-09-05 22:00:10 +02:00
|
|
|
.label {
|
2012-11-23 17:33:43 +01:00
|
|
|
background: $hover;
|
|
|
|
text-shadow: none;
|
|
|
|
color: $style_color;
|
2012-06-12 13:58:44 +02:00
|
|
|
}
|
2012-09-05 22:00:10 +02:00
|
|
|
li {
|
2012-07-03 19:52:48 +02:00
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
display: table-cell;
|
|
|
|
width: 1%;
|
2013-01-31 10:22:06 +01:00
|
|
|
border-bottom: 2px solid #EEE;
|
2012-09-26 04:07:41 +02:00
|
|
|
&.active {
|
2012-12-06 15:54:53 +01:00
|
|
|
border-bottom: 2px solid #474D57;
|
|
|
|
a {
|
|
|
|
color: $style_color;
|
2012-06-12 13:58:44 +02:00
|
|
|
}
|
|
|
|
}
|
2012-07-02 11:15:23 +02:00
|
|
|
|
2012-09-05 22:00:10 +02:00
|
|
|
&.home {
|
|
|
|
a {
|
2013-01-31 10:22:06 +01:00
|
|
|
i {
|
|
|
|
font-size: 20px;
|
2012-11-23 17:33:43 +01:00
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
2012-07-03 19:52:48 +02:00
|
|
|
}
|
|
|
|
}
|
2012-07-02 11:15:23 +02:00
|
|
|
}
|
2012-06-12 13:58:44 +02:00
|
|
|
}
|
2012-09-05 22:00:10 +02:00
|
|
|
a {
|
2012-07-03 19:52:48 +02:00
|
|
|
display: block;
|
|
|
|
text-align: center;
|
2012-12-06 15:54:53 +01:00
|
|
|
font-weight: normal;
|
2013-01-31 10:22:06 +01:00
|
|
|
height: 36px;
|
2012-11-23 17:33:43 +01:00
|
|
|
line-height: 36px;
|
2012-12-06 15:54:53 +01:00
|
|
|
color: #777;
|
2012-11-23 17:51:38 +01:00
|
|
|
text-shadow: 0 1px 1px white;
|
|
|
|
padding: 0 10px;
|
2012-07-03 19:52:48 +02:00
|
|
|
}
|
2012-06-12 13:58:44 +02:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* End of Main Menu
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|