Details
Description
In creating style sheets for Lessons, Instructional Designers and others expect the button class to be spelled nextprev instead of nexprev . One Designer at Notre Dame wrote his CSS this way to accomodate both spellings:
/*Next And Previous buttons needs special care*/
/* Button class whatever */
a.nextprev.menuitem.button,
a.nexprev.menuitem.button {
background: #FF0000 !important;
border: 1px solid #ccc;
color: #0C2340 !important;
cursor: pointer;
display: inline-block;
font-family: "Arial", sans-serif;
font-size: 12px;
line-height: 18px;
margin: 0em 1em 2.5em 2.5em;
padding: 0.4em 0.8em 0.45em 0.8em;
text-decoration: none !important;
-moz-appearance: none;
-webkit-appearance: none;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}