ESPTrainer built with Meteor and React

Actions.scss 416B

12345678910111213141516171819202122232425
  1. @import "shadow";
  2. .actions {
  3. display: flex;
  4. justify-content: center;
  5. flex-wrap: wrap;
  6. width: 300px;
  7. margin-top: 20px;
  8. button {
  9. background: white;
  10. border: 1px solid black;
  11. @include shadow();
  12. margin: 10px;
  13. padding: 10px 20px;
  14. text-transform: uppercase;
  15. width: 100px;
  16. &:active { box-shadow: none; }
  17. &:focus { outline: none; }
  18. &:hover { cursor: pointer; }
  19. }
  20. }