index.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. body{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. }
  6. body > *{
  7. margin: 15px;
  8. }
  9. .text{
  10. max-width: 75vw;
  11. font-size: 20px;
  12. }
  13. .interactive{
  14. display: flex;
  15. justify-content: space-around;
  16. }
  17. .interactive > *{
  18. margin: 10px;
  19. }
  20. .button{
  21. border: 3px solid black;
  22. font-weight: bold;
  23. font-size: 20px;
  24. box-shadow: 5px 5px 5px gray;
  25. transition: 0.4s;
  26. transition: transform 0s;
  27. padding: 5px;
  28. cursor: pointer;
  29. }
  30. .button:hover{
  31. background: black;
  32. border: 3px solid white;
  33. color: white;
  34. }
  35. .button:active{
  36. transform: translateY(3px);
  37. box-shadow: 3px 3px 3px black;
  38. }
  39. #partiers{
  40. text-align: center;
  41. font-size: 20px;
  42. max-width: 75px;
  43. }
  44. #datesDiv{
  45. display: flex;
  46. justify-content: space-around;
  47. flex-wrap: wrap;
  48. }
  49. .date{
  50. min-width: 100px;
  51. border: 2px solid black;
  52. text-align: center;
  53. margin: 25px;
  54. padding: 25px;
  55. }
  56. .match{
  57. background: rgb(0, 91, 188);
  58. color: rgb(255, 214, 0);
  59. border: 2px solid rgb(255, 214, 0);
  60. }