46 lines
729 B
CSS
46 lines
729 B
CSS
/* Master Styles */
|
|
h1 {
|
|
color: #369;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 250%;
|
|
}
|
|
|
|
h2, h3 {
|
|
color: #444;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-weight: lighter;
|
|
}
|
|
|
|
body {
|
|
margin: 2em;
|
|
}
|
|
|
|
body, input[text], button {
|
|
color: #888;
|
|
font-family: Cambria, Georgia;
|
|
}
|
|
|
|
.loading {
|
|
-animation: spin 1.5s infinite linear;
|
|
-webkit-animation: spin2 1.5s infinite linear;
|
|
}
|
|
|
|
@-webkit-keyframes spin2 {
|
|
from { -webkit-transform: rotate(0deg);}
|
|
to { -webkit-transform: rotate(360deg);}
|
|
}
|
|
|
|
/*** RATING STAR ***/
|
|
.star {
|
|
color:rgb(38, 135, 251);
|
|
}
|
|
.table tbody > tr > td.star {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* . . . */
|
|
/* everywhere else */
|
|
* {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|