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.

49 lines
581 B

  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. }
  29. th, td {
  30. border: 1px solid black;
  31. }
  32. .wuerfel{
  33. display: inline-flex;
  34. padding: 3%;
  35. }
  36. .icon{
  37. display: flex;
  38. width: 33px;
  39. height: 33px;
  40. }