button.css 339 B

12345678910111213141516171819
  1. .iconButton {
  2. display: inline-flex;
  3. align-items: center;
  4. justify-content: center;
  5. margin: 0;
  6. padding: .2em;
  7. font-size: 100%;
  8. line-height: 1;
  9. background: rgba(0, 0, 0, 0.1);
  10. border: 0;
  11. outline: none;
  12. text-shadow: 1px 1px 1px #ddd;
  13. &:hover {
  14. background: rgba(0, 0, 0, 0.2);
  15. }
  16. }