Template
Panel/styles.css
From Dogcraft Wiki
No edit summary Tag: Manual revert |
No edit summary |
||
Line 6: | Line 6: | ||
box-shadow: 0 2px 3px rgba(85, 85, 85, 0.1), 0 0 0 1px rgba(85, 85, 85, 0.1); | box-shadow: 0 2px 3px rgba(85, 85, 85, 0.1), 0 0 0 1px rgba(85, 85, 85, 0.1); | ||
transition: box-shadow 0.2s ease-in-out; | transition: box-shadow 0.2s ease-in-out; | ||
padding: 15px; | |||
width: 100%; | width: 100%; | ||
} | } |
Revision as of 15:49, 7 February 2023
#collapsible-panel {
display: flex;
flex-direction: column;
background: #ffffff;
border-radius:5px;
box-shadow: 0 2px 3px rgba(85, 85, 85, 0.1), 0 0 0 1px rgba(85, 85, 85, 0.1);
transition: box-shadow 0.2s ease-in-out;
padding: 15px;
width: 100%;
}
#collapsible-panel:hover,
#collapsible-panel:focus{
box-shadow: 0 2px 3px rgba(85, 85, 85, 0.25), 0 0 10px rgba(85, 85, 85, 0.25);
}
#collapsible-panel #header {
font-weight: 600;
}
This page was last modified on 7 February 2023, at 15:49. (21 months ago)