2015-05-14 16:45:37 +03:00
|
|
|
/* Nav Lists
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.nav-list {
|
|
|
|
padding: 0;
|
|
|
|
max-width: 500px;
|
2021-02-10 15:48:10 +03:00
|
|
|
background: var(--main-color-content-greybg);
|
2015-05-16 14:43:12 +03:00
|
|
|
border-radius: var(--border-radius);
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list.nav-list-block {
|
|
|
|
max-width: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list-item {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
2017-02-21 12:16:32 +03:00
|
|
|
margin: 0;
|
2015-05-14 16:45:37 +03:00
|
|
|
color: var(--darkgrey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list-item:hover {
|
2021-02-10 15:48:10 +03:00
|
|
|
background: var(--whitegrey);
|
2015-08-13 11:04:45 +03:00
|
|
|
cursor: pointer;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list-item:first-of-type {
|
|
|
|
border-top-left-radius: var(--border-radius);
|
|
|
|
border-top-right-radius: var(--border-radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list-item:last-of-type {
|
|
|
|
border-bottom-right-radius: var(--border-radius);
|
2015-05-16 14:43:12 +03:00
|
|
|
border-bottom-left-radius: var(--border-radius);
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list-item:not(:last-of-type) {
|
2021-02-10 15:48:10 +03:00
|
|
|
border-bottom: 1px solid var(--white);
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list-item button {
|
2022-02-11 12:10:18 +03:00
|
|
|
width: 100%;
|
|
|
|
padding: 9px 40px 10px 12px;
|
2015-05-14 16:45:37 +03:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list-item a {
|
|
|
|
color: var(--darkgrey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list-item b {
|
|
|
|
display: block;
|
2019-06-18 13:47:21 +03:00
|
|
|
font-size: 1.4rem;
|
2015-05-14 16:45:37 +03:00
|
|
|
line-height: 1.375;
|
2019-06-18 13:47:21 +03:00
|
|
|
font-weight: 600;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list-item span {
|
|
|
|
display: block;
|
|
|
|
color: var(--midgrey);
|
2019-06-18 13:47:21 +03:00
|
|
|
font-size: 1.2rem;
|
2015-05-14 16:45:37 +03:00
|
|
|
line-height: 1.375;
|
2017-02-21 12:16:32 +03:00
|
|
|
letter-spacing: 0.2px;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2017-04-07 18:23:45 +03:00
|
|
|
.nav-list-item svg {
|
2015-05-14 16:45:37 +03:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
right: 10px;
|
|
|
|
margin-top: -0.9rem;
|
2017-04-07 18:23:45 +03:00
|
|
|
height: 1.4rem;
|
2017-06-02 00:02:03 +03:00
|
|
|
width: 1.4rem;
|
2017-04-07 18:23:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-list-item svg path {
|
|
|
|
fill: var(--midgrey);
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|