Help

This file contains classes that are referenced later on in HTML files for formatting purposes.

.close

/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}

.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
  • Gray color

  • Float aligned right

  • 28px font size

  • Bold font

:hover

  • Black color

  • No text decoration

  • Cursor becomes a pointer

:focus

  • Black color

  • No text decoration

  • Cursor becomes a pointer