1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- @import '../../app.less';
- .answer-button {
- text-align: center;
- cursor: pointer;
- display: inline-block;
- vertical-align: middle;
- transition: all 0.25s;
- border-radius: 2px;
- }
- .answer-button.basic {
- padding: 4px 24px;
- line-height: 20px;
- font-size: 14px;
- }
- .answer-button.small {
- padding: 3px 14px;
- line-height: 18px;
- font-size: 12px;
- }
- .answer-button.lager {
- font-size: 18px;
- line-height: 28px;
- padding: 8px 30px;
- }
- .answer-button.disabled {
- cursor: no-drop;
- }
- .answer-button.basic.radius {
- border-radius: 17px;
- }
- .answer-button.small.radius {
- border-radius: 14px;
- }
- .answer-button.lager.radius {
- border-radius: 36px;
- }
- .answer-button.default {
- background: transparent;
- color: #686872;
- }
- .answer-button.cancel {
- background: transparent;
- color: #A7A7B7;
- }
- .answer-button.confirm {
- background: #4299FF;
- color: #fff;
- }
- .answer-button.default:hover,
- .answer-button.default.active {
- background: #4299FF;
- color: #fff;
- }
- .answer-button.cancel:hover,
- .answer-button.cancel.active {
- background: #ECEDEE;
- }
- .answer-button.confirm:hover,
- .answer-button.confirm.active {
- background: #69AEFF;
- }
- .answer-button.default.disabled {
- color: #A7A7B7;
- }
- .answer-button.default.disabled:hover,
- .answer-button.default.active.disabled {
- background: #ECEDEE;
- color: #A7A7B7;
- }
|