29 lines
560 B
CSS
29 lines
560 B
CSS
.mdl-textfield {
|
|
width: 100%;
|
|
padding-bottom: 10px;
|
|
}
|
|
.mdl-textfield__label::after {
|
|
bottom: 10px;
|
|
}
|
|
|
|
/* TODO: No utilizar !important */
|
|
.mdl-button {
|
|
font-weight: bolder;
|
|
}
|
|
.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;
|
|
}
|