The MSU Legal Footer is designed to enable the text links, standard text and MSU wordmark to display over the top of any webpage background or image.
The legal footer provides direct access to website contact information, privacy statement, accessibility information and site map and includes university contact information.
Designing for mobile devices requires special consideration.
Mobile and tablet screen aspect ratio and resolution vary across devices and operating systems. The layout and spacing information in this section provides guidance on placement and presentation of required elements on mobile devices.
The website information area in the standard footer should include:
The website information and MSU information areas are separated using a 1-pixel, dotted rule (#999999) equal to the width of the website information element.
The MSU information area should include:
Font size is specified for the approved variations below in both absolute and relative measurements, or rems. Pixels are an absolute size where 1px = 1/96th of an inch. Rems are relative to the root (html) element font size. CSS best practice is to provide both units so that browsers that do not support rem will use the fallback pixel property value.
For example, assuming that a browser’s default font size is 16px:
1 rem = 16 px | 0.875 rem = 14 px | 0.75 rem = 12 px | 0.625 rem = 10 px | 0.5625 rem = 9 px | 0.5 rem = 8 px | etc.
In this example, the resulting CSS is:
html {
font-size: 16px;
font-size: 1rem;
}
.size1 {
font-size: 32px;
font-size: 2rem;
}
.size2 {
font-size: 14px;
font-size: 0.875rem;
}
...