2021-10-18 21:37:29 +02:00
|
|
|
.listelement {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
padding: .5rem 0;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: all .2 ease-in-out;
|
|
|
|
margin: .5rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listelement:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listelement h3 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listelement p {
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0;
|
|
|
|
color: var(--ifm-font-color-base);
|
|
|
|
}
|
|
|
|
|
|
|
|
.fillspace {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
padding: .5rem 1rem .5rem .5rem;
|
|
|
|
}
|
|
|
|
|
2022-01-11 20:48:13 +01:00
|
|
|
.listlabel {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2021-10-18 21:37:29 +02:00
|
|
|
.listWrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
background: var(--list-background);
|
2022-01-11 20:48:13 +01:00
|
|
|
border-radius: 1rem;
|
2021-10-18 21:37:29 +02:00
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listWrapperTitle {
|
|
|
|
color: var(--ifm-heading-color);
|
|
|
|
font-size: 16px;
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
display: block;
|
2022-01-11 20:48:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.homerow {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.homecontent {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
|
|
|
padding: 1rem 0;
|
2021-10-18 21:37:29 +02:00
|
|
|
}
|