index.css 655 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. *{margin:0;padding:0;box-sizing:border-box;}
  2. body, html{
  3. height: 100%;
  4. width: 100%;
  5. }
  6. body{
  7. display: flex;
  8. flex-direction: column;
  9. justify-content: center;
  10. align-items: center;
  11. }
  12. .contents{
  13. display: flex;
  14. justify-content: center;
  15. width: 100%;
  16. position: relative;
  17. }
  18. #inputs{
  19. display: flex;
  20. flex-direction: column;
  21. position: absolute;
  22. left: 35px;
  23. top: 35px;
  24. }
  25. table{
  26. border-collapse: collapse;
  27. }
  28. td{
  29. height: 125px;
  30. width: 125px;
  31. border: 1px solid black;
  32. position: relative;
  33. }
  34. .cross{
  35. height: 100%;
  36. width: 100%;
  37. position: absolute;
  38. top: 0;
  39. left: 0;
  40. }