The new Colorado accessibility law, HB21-1110, affects university websites and went into effect July 1, 2024. This means that university website owners/content managers must ensure your website content meets the minimum web accessibility standards.
Learn how to meet accessibility standardsBootstrap 4 has a robust set of built-in utility classes to handle things like borders, padding, margin, etc. On top of that, we've established set of CU branded utility
classes as well listed below. These classes may be used by developers when implementing/developing widgets, as well as by site builders when configuring widgets.
The following video is a demo that walks through some examples of using utility classes to enhance your website design.
We've incorporated a small animation library into our Sitefinity platform. These animations are activated 'on scroll'. In other words, they only trigger when the user scrolls to the particular item on the page. The current implementation requires that you add specific HTML to a content block in order to use these animations. Complete documentation can be found here:
Class | RGBA value | Visual |
CU_white | (255, 255, 255, 1) | |
CU_black | (0, 0, 0, 1) | |
CU_grayLight | (221, 221, 221, 1) | |
CU_gray | (153, 153, 153, 1) | |
CU_grayDark | (89, 89, 85, 1) | |
CU_goldLight | (225, 214, 187, 1) | |
CU_gold | (207, 184, 124, 1) | |
CU_goldDark | (165, 150, 105, 1) |
Class | Value | Result |
border-1 | border-width: 1px; | All borders, 1px width |
border-2 | border-width: 2px; | All borders, 2px width |
border-3 | border-width: 3px; | All borders, 3px width |
border-4 | border-width: 4px; | All borders, 4px width |
border-5 | border-width: 5px; | All borders, 5px width |
* You can also specify individual borders and their width, up to 5px. For example, using 'border-right-3' would produce a 3px width border on the right side only. It can be combined with other individual border widths to create some interesting results
.
Class | RGBA value | Visual |
bg-CU_transparent | (0, 0, 0, 0) | |
bg-CU_white | (255, 255, 255, 1) | |
bg-CU_whiteTransparent | (255, 255, 255, .7) | |
bg-CU_black | (0, 0, 0, 1) | |
bg-CU_blackTransparent | (0, 0, 0, .7) | |
bg-CU_grayLight | (221, 221, 221, 1) | |
bg-CU_gray | (153, 153, 153, 1) | |
bg-CU_grayDark | (89, 89, 85, 1) | |
bg-CU_goldLight* | (225, 214, 187, 1) | |
bg-CU_gold* | (207, 184, 124, 1) | |
bg-CU_goldDark* | (165, 150, 105, 1) |
Class | RGBA value | Visual |
text-CU_white | (255, 255, 255, 1) | Sample |
text-CU_black | (0, 0, 0, 1) | Sample |
text-CU_gold | (207, 184, 124, 1) | Sample |
Text Class | Background Class | Visual |
text-CU_black | bg-CU_white | Sample |
text-CU_black | bg-CU_whiteTransparent | Sample |
text-CU_white | bg-CU_black | Sample |
text-CU_white | bg-CU_blackTransparent | Sample |
text-CU_gold | bg-CU_black | Sample |
text-CU_black | bg-CU_grayLight | Sample |
text-CU_black | bg-CU_gray | Sample |
text-CU_white | bg-CU_grayDark | Sample |
text-CU_black | bg-CU_goldLight | Sample |
text-CU_black | bg-CU_gold | Sample |
text-CU_black | bg-CU_goldDark | Sample |
Combo Class | Visual |
combo-CU_text-black-bg-white | Sample |
combo-CU_text-black-bg-whiteTransparent | Sample |
combo-CU_text-white-bg-black | Sample |
combo-CU_text-white-bg-blackTransparent | Sample |
combo-CU_text-gold-bg-black | Sample |
combo-CU_text-black-bg-grayLight | Sample |
combo-CU_text-black-bg-gray | Sample |
combo-CU_text-white-bg-grayDark | Sample |
combo-CU_text-black-bg-goldLight | Sample |
combo-CU_text-black-bg-gold | Sample |
combo-CU_text-black-bg-goldDark | Sample |