mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-07-16 08:06:42 -05:00
29 lines
412 B
CSS
29 lines
412 B
CSS
::-webkit-details-marker {
|
|
float: right;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
details {
|
|
background: #f6f6f6;
|
|
border-radius: 7px;
|
|
margin-top: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
details[open] summary {
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
details summary {
|
|
border-radius: 7px;
|
|
padding: 10px 20px;
|
|
background: #673db6;
|
|
color: white;
|
|
outline: none;
|
|
}
|
|
|
|
details .text {
|
|
margin: 0;
|
|
padding: 15px 20px;
|
|
} |