Coggle requires JavaScript to display documents.
opacity
.body-background { width: calc(100% - 235px); margin-left: 235px; opacity: 0.5; }
background-colour: rgba(0, 244, 113, 0.5)
position
top
left
bottom
right
static
relative
absolute
fixed
.sidebar { background: var(--colour-indigo-dye); position: fixed; top: 0; left: 0; width: 235px; height: 100%; }
transition
ease
.sidebar { background: var(--colour-indigo-dye); position: fixed; top: 0; left: 0; width: 235px; height: 100%; padding: 20px 0; transition: all 0.5s ease; }
transition: 3s
transition: background-color 3s
transition: background-color 3s, border-radius 2s
transform
.body-background { transform: rotate(45deg); }
.body-background { transform-origin: bottom right; transform: rotate(45deg); }
.body-background { transform: rotate(45deg) translate(-200px) scale(0.5); }