30 lines
605 B
CSS
30 lines
605 B
CSS
/**
|
|
* Rewrited CSS rules from Material Design Lite.
|
|
* FIXME: don't use !important
|
|
*/
|
|
body {
|
|
line-height: initial;
|
|
font-size: 12pt;
|
|
}
|
|
.mdl-button {
|
|
font-weight: bolder;
|
|
color: #ffa410;
|
|
}
|
|
.mdl-button--colored {
|
|
color: white !important;
|
|
}
|
|
.mdl-button--colored,
|
|
.mdl-button--colored:focus,
|
|
.mdl-button--colored:active {
|
|
background-color: #ffa410 !important;
|
|
}
|
|
.mdl-button--colored:hover,
|
|
.mdl-button--raised:hover {
|
|
background-color: #ffa410 !important;
|
|
}
|
|
.mdl-button--fab{
|
|
color: white !important;
|
|
background-color: #ff9400 !important;
|
|
}
|
|
|