79 lines
1.3 KiB
CSS
79 lines
1.3 KiB
CSS
input[type='checkbox'] {
|
|
display: none;
|
|
}
|
|
|
|
.lbl-toggle {
|
|
display: block;
|
|
font-weight: bold;
|
|
font-size: 1.2rem;
|
|
#color: #51e0b3;
|
|
background: #323232;
|
|
border-radius: 7px;
|
|
cursor: pointer;
|
|
transition: all 0.25s ease-out;
|
|
}
|
|
|
|
|
|
.lbl-toggle:hover {
|
|
color: #61f0e3
|
|
}
|
|
|
|
.lbl-toggle-disabled::before {
|
|
content: ' ';
|
|
display: inline-block;
|
|
border-top: 8px solid transparent;
|
|
border-bottom: 8px solid transparent;
|
|
border-left: 8px solid currentColor;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
margin-right: .7rem;
|
|
transform: translateY(-2px);
|
|
transition: transform .2s ease-out;
|
|
}
|
|
|
|
.collapsible-content {
|
|
max-height: 0px;
|
|
overflow: hidden;
|
|
transition: max-height .25s ease-in-out;
|
|
}
|
|
|
|
.toggle:checked + .lbl-toggle + .collapsible-content {
|
|
max-height: 100vh;
|
|
}
|
|
|
|
.toggle:checked + .lbl-toggle::before {
|
|
transform: rotate(90deg) translateX(-3px);
|
|
}
|
|
|
|
.toggle:checked + .lbl-toggle {
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
|
|
|
|
.main-point {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.main-point-image {
|
|
margin-top: 10px;
|
|
margin-left: 10px;
|
|
margin-bottom: 10px;
|
|
float: left;
|
|
width: 50%;
|
|
}
|
|
|
|
.main-point-text {
|
|
margin-top: 20px;
|
|
margin-left: 60%;
|
|
margin-right: 10px;
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.header {
|
|
margin-top: 40px;
|
|
margin-bottom: 40px;
|
|
}
|