aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/static/css/collapsibles.css
blob: d35e77ea08530fc059ec4e5c358472612f0ae5c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.collapsible {
  cursor: pointer;
  width: 100%;
  border: none;
  outline: none;
}

.collapsible-content {
  max-height: 40em;
  transition: max-height 0.3s ease-out;
}

.collapsible-content.collapsed {
  overflow: hidden;
  max-height: 0;
}