Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel7

Default Style

Property

Value

NotesNote

1

background-color

#ffffffprimary-color(white)

White

2

color

#1a1a1aprimary-color(black)

Black

3

font-size

1.125rem

4

font-weight

800

5

text-align

center

6

padding

15px 35px

7

border

solid 2px transparent

8

border-radius

30px

There is an ::after pseudo element with:

Code Block
languagecss
background-image: linear-gradient(40deg, #059bd6 6%, #253a6e 98%);

that creates the gradient border effect. View the digital styleguide https://styleguide.asce.org/section-components.html#asgref-components-buttons for details.

Use the color #0273ba, Blue,

...

for border-color

...

if a gradient is not possible using the method described above.

States - :hover, :focus, and :active

Property

Value

Note

1

background-image

linear-gradient(40deg, #253a6e 6%, #059bd6 98%)

2

color

#ffffffprimary-color(white)

White

3

background-color

transparent

State - :disabled

Property

Value

Note

1

background

rgb(148, 148, 148)

2

color

rgb(255, 255, 255)

White

3

border-color

rgb(148, 148, 148)

White Style

State - default

Code Block
languagecss
.btn.-white, .button.-white {
  cursor: pointer;
  display: inline-block;
  position: relative;
  background-color: #fff; /* primary-color(white

...

border-color

...

) */
  background-clip: padding-box;
  color: #1a1a1a; /* primary-color(black) */
  font-family: "Mulish", "Helvetica Neue", Helvetica, sans-serif; /* $mulish */
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  padding: 15px 35px;
  border: solid 2px transparent;
  border-radius: 30px;
  transition: ease-in-out 0.15s, background-color 0.3s ease, color 0.1s ease;
  box-sizing: border-box;
}

.btn.-white::before, .button.-white::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(40deg, #9fd64d 6%, #9fd64d 98%);
  margin: 0;
  border-radius: inherit;
  transition: 0.15s ease-in-out;
  z-index: -1;
}

States - :hover, :focus, and :active

Code Block
languagesass
.btn, .button {
    &.-white {
        &:active, &:hover, &:focus, &.-focused {
            background-image: linear-gradient(40deg, #9fd64d 6%, #9fd64d 98%);
            color: #012a52;
            outline: 0;
            margin: 0;
            background-color: transparent;
        }
    }
}