Template
Panel/styles.css
From Dogcraft Wiki
(Created page with "#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...") |
No edit summary Tag: Reverted |
||
Line 7: | Line 7: | ||
transition: box-shadow 0.2s ease-in-out; | transition: box-shadow 0.2s ease-in-out; | ||
width: 100%; | width: 100%; | ||
} | |||
#collapsible-panel .mw-collapsible-text { | |||
display: none; | |||
} | } | ||
Revision as of 15:42, 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;
width: 100%;
}
#collapsible-panel .mw-collapsible-text {
display: none;
}
#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:42. (21 months ago)