BrutCSS Reference Documentation

Appearances Classes

Appearannce and decoration-type classes beyond what you’d have in typography, colors, or borders.

See Also

Appearance

The apperance property.

.appearance-none

.appearance-none {
  appearance: none;
}

.appearance-auto

.appearance-auto {
  appearance: auto;
}

Box Shadow

Box shadows. This is a six-step scale with 1 being the “lowest” shadow and 6 being very high and very scattered. In theory something with shadow-1 will look higher than something with shadow-none, but lower than something with shadow-3.

See Also

.shadow-1

.shadow-1 {
  box-shadow: rgb(135, 135, 135) 1px 1px 4px 0px;
}

.shadow-2

.shadow-2 {
  box-shadow: rgb(135, 135, 135) 1px 1px 10.64px 0px;
}

.shadow-3

.shadow-3 {
  box-shadow: rgb(135, 135, 135) 1px 1px 15.022px 0px;
}

.shadow-4

.shadow-4 {
  box-shadow: rgb(135, 135, 135) 1px 1px 22.297px 0px;
}

.shadow-5

.shadow-5 {
  box-shadow: rgb(135, 135, 135) 1px 1px 34.373px 0px;
}

.shadow-6

.shadow-6 {
  box-shadow: rgb(135, 135, 135) 1px 1px 54.419px 0px;
}

.shadow-none

.shadow-none {
  box-shadow: none;
}

Inset Shadow

Inset shadows. This is a six-step scale with 1 being the “shallowest” shadow and 6 being very deep and scattered. In theory something with inset-shadow-1 will look deeper than something with inset-shadow-none, but more shallow than something with inset-shadow-3.

See Also

.inset-shadow-1

.inset-shadow-1 {
  box-shadow: rgb(106, 106, 106) 1px 1px 4px -1px inset;
}

.inset-shadow-2

.inset-shadow-2 {
  box-shadow: rgb(106, 106, 106) 1px 1px 5.52px -1.043px inset;
}

.inset-shadow-3

.inset-shadow-3 {
  box-shadow: rgb(106, 106, 106) 1px 1px 8.195px -1.193px inset;
}

.inset-shadow-4

.inset-shadow-4 {
  box-shadow: rgb(106, 106, 106) 1px 1px 12.903px -1.485px inset;
}

.inset-shadow-5

.inset-shadow-5 {
  box-shadow: rgb(106, 106, 106) 1px 1px 21.190px -1.986px inset;
}

.inset-shadow-6

.inset-shadow-6 {
  box-shadow: rgb(106, 106, 106) 1px 1px 35.774px -2.802px inset;
}

.inset-shadow-none

.inset-shadow-none {
  box-shadow: none;
}

Cursors

Cursors.

.cursor-default

.cursor-default {
  cursor: default;
}

.pointer

.pointer {
  cursor: pointer;
}

.cursor-pointer

.cursor-pointer {
  cursor: pointer;
}

.cursor-progress

.cursor-progress {
  cursor: progress;
}

.cursor-move

.cursor-move {
  cursor: move;
}

.cursor-grab

.cursor-grab {
  cursor: grab;
}

.cursor-not-allowed

.cursor-not-allowed {
  cursor: not-allowed;
}

Opacity Percent

Opacity percentage-based scale, including third and two-thirds.

.o-10

.o-10 {
  opacity: 10%;
}

.o-20

.o-20 {
  opacity: 20%;
}

.o-25

.o-25 {
  opacity: 25%;
}

.o-30

.o-30 {
  opacity: 30%;
}

.o-40

.o-40 {
  opacity: 40%;
}

.o-50

.o-50 {
  opacity: 50%;
}

.o-60

.o-60 {
  opacity: 60%;
}

.o-70

.o-70 {
  opacity: 70%;
}

.o-75

.o-75 {
  opacity: 75%;
}

.o-80

.o-80 {
  opacity: 80%;
}

.o-90

.o-90 {
  opacity: 90%;
}

.o-100

.o-100 {
  opacity: 100%;
}

.o-third

.o-third {
  opacity: calc(100% / 3);
}

.o-two-thirds

.o-two-thirds {
  opacity: calc(100% / 1.5);
}