69 lines
1.0 KiB
CSS
69 lines
1.0 KiB
CSS
|
body {
|
||
|
background: #1E1E1E;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.bg {
|
||
|
background: #242424;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
background: #1E1E1E;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
dive {
|
||
|
background: #1E1E1E;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
a:link {
|
||
|
color: #b30000;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #EFEEEE;
|
||
|
}
|
||
|
|
||
|
.dropdown-menu {
|
||
|
position: absolute;
|
||
|
top: 100%;
|
||
|
left: 0;
|
||
|
z-index: 1000;
|
||
|
display: none;
|
||
|
float: left;
|
||
|
min-width: 160px;
|
||
|
padding: 5px 0;
|
||
|
margin: 2px 0 0;
|
||
|
margin-top: 2px;
|
||
|
list-style: none;
|
||
|
font-size: 15px;
|
||
|
text-align: left;
|
||
|
background-color: #242424;
|
||
|
}
|
||
|
|
||
|
.dropdown-menu > li > a {
|
||
|
display: block;
|
||
|
padding: 3px 20px;
|
||
|
clear: both;
|
||
|
font-weight: normal;
|
||
|
line-height: 1.42857143;
|
||
|
color: #EFEEEE;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
|
||
|
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
|
||
|
z-index: 2;
|
||
|
color: #b30000;
|
||
|
background-color: #242424;
|
||
|
border-color: #242424;
|
||
|
}
|
||
|
|
||
|
.list-group-item:last-child {
|
||
|
margin-bottom: 0;
|
||
|
border-bottom-right-radius: 4px;
|
||
|
border-bottom-left-radius: 4px;
|
||
|
background-color: #242424;
|
||
|
}
|
||
|
|