Files
WEBSITE_hugulumu/styles/elements/cv.css
2024-06-06 12:14:58 +02:00

53 lines
693 B
CSS

.cv {
width: auto;
max-width: 900px;
}
.cv {
display: flex;
text-align: left;
}
.cv summary {
position: relative;
list-style-position: outside;
list-style-type: "▸ ";
font-size: 1.8rem;
margin: auto;
width: fit-content;
}
.cv summary .open {
display: none;
}
.cv summary .close {
display: inline;
}
.cv .cv_download {
display: inline-block;
width: 100%;
margin-top: 30px;
text-align: center;
}
.cv[open] summary {
list-style-type: "▾ ";
}
.cv[open] summary .open {
display: inline;
}
.cv[open] summary .close {
display: none;
}
.cv > *:last-child {
margin-bottom: 100px;
}
.cv .banner {
/*
margin: 50px 0px;
*/
margin: 50px 50px;
width: calc(100% - 100px);
}