39 lines
626 B
CSS
39 lines
626 B
CSS
|
.a2cldr {
|
||
|
height: 46px;
|
||
|
width: 246px;
|
||
|
position: relative;
|
||
|
color: #032c53;
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
|
||
|
|
||
|
.a2cldr.active .a2cldr-list {
|
||
|
display: block;
|
||
|
}
|
||
|
.a2cldr-list {
|
||
|
position: relative;
|
||
|
z-index: 2;
|
||
|
padding: 0 12px;
|
||
|
display: none;
|
||
|
background-color: #000;
|
||
|
box-shadow: 0px 8px 20px 0px #bababa;
|
||
|
}
|
||
|
.a2cldr-item {
|
||
|
list-style: none;
|
||
|
padding: 14px 0;
|
||
|
border-bottom: 1px solid #f3f3f3;
|
||
|
}
|
||
|
.a2cldr-item a {
|
||
|
color: #032c53;
|
||
|
text-decoration: none;
|
||
|
width: 100%;
|
||
|
display: block;
|
||
|
}
|
||
|
.a2cldr-item a:hover {
|
||
|
color: #032c53;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
.a2cldr-item:last-child {
|
||
|
border-bottom: 0;
|
||
|
}
|