style.css 633 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @import 'femtocrank/style.css';
  2. section.transparent {
  3. background-color: transparent;
  4. box-shadow: none;
  5. }
  6. fieldset {
  7. display: grid;
  8. grid-template-columns: repeat(auto-fit, 180px);
  9. grid-auto-rows: 1fr;
  10. justify-content: center;
  11. place-items: stretch;
  12. }
  13. action-button {
  14. display: flex;
  15. flex-direction: column;
  16. flex-grow: 1;
  17. }
  18. action-button > button {
  19. display: flex;
  20. flex-direction: column;
  21. flex-grow: 1;
  22. justify-content: center;
  23. font-weight: normal;
  24. font-size: 0.85em;
  25. box-shadow: 0 0 .6em #aaa;
  26. }
  27. action-button > button .icon {
  28. font-size: 3em;
  29. }
  30. dialog {
  31. border-radius: 1em;
  32. }
  33. footer span {
  34. margin-right: 1em;
  35. }