waves/public/assets/g/gba/stylesheets/collapsible.css
2025-04-09 17:11:14 -05:00

49 lines
944 B
CSS

/*
GBA ONLINE; GBA.JS.ORG; "Online GameBoy Advance Emulator"
Copyright (C) 2021-present AYVACS
Licensed under the MIT License (view LICENSE.md for more information)
*/
.collapsible-collapsible {
box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
border-radius: 5px;
background-color: rgb(29, 29, 29);
color: white;
cursor: pointer;
padding: 18px;
width: 60%;
border: none;
text-align: center;
outline: none;
font-size: 30px;
}
.collapsible-active,
.collapsible-collapsible:hover {
background-color: rgb(39, 39, 39);
}
.collapsible-text,
.collapsible-collapsible a {
color: white;
font-size: 30px;
}
.collapsible-content {
transition: max-height 0.2s ease-out;
text-align: center;
overflow: hidden;
padding: 0 18px;
font-size: 20px;
max-height: 0;
margin: auto;
width: 60%;
}
button {
font-family: tuna, sans-serif;
font-weight: 500;
font-style: normal;
}