You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
1.7 KiB

  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. margin: 0;
  6. }
  7. .header {
  8. padding: 20px;
  9. text-align: center;
  10. }
  11. .line {
  12. border: 2px solid black;
  13. }
  14. .column {
  15. text-align: center;
  16. float: left;
  17. width: 50%;
  18. padding: 15px;
  19. }
  20. .row:after {
  21. content: "";
  22. display: table;
  23. clear: both;
  24. }
  25. table {
  26. width: 100%;
  27. border-collapse: collapse;
  28. background-color: lightblue;
  29. }
  30. th, td {
  31. border: 1px solid black;
  32. }
  33. .wuerfel{
  34. display: inline-flex;
  35. padding: 3%;
  36. }
  37. .icon{
  38. display: flex;
  39. width: 33px;
  40. height: 33px;
  41. }
  42. .center {
  43. margin: auto;
  44. width: 50%;
  45. }
  46. .button {
  47. appearance: button;
  48. backface-visibility: hidden;
  49. background-color: #405cf5;
  50. border-radius: 6px;
  51. border-width: 0;
  52. box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
  53. box-sizing: border-box;
  54. color: #fff;
  55. cursor: pointer;
  56. font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
  57. font-size: 100%;
  58. height: 44px;
  59. line-height: 1.15;
  60. margin: 12px 0 0;
  61. outline: none;
  62. overflow: hidden;
  63. padding: 0 25px;
  64. position: relative;
  65. text-align: center;
  66. text-transform: none;
  67. transform: translateZ(0);
  68. transition: all .2s,box-shadow .08s ease-in;
  69. user-select: none;
  70. -webkit-user-select: none;
  71. touch-action: manipulation;
  72. width: 20%;
  73. }
  74. .button:disabled {
  75. cursor: default;
  76. }
  77. .button:focus {
  78. box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
  79. }