style.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. body{
  2. font-family: Arial, sans-serif;
  3. }
  4. .list {
  5. display: flex;
  6. justify-content: center;
  7. flex-direction: column;
  8. }
  9. .li {
  10. text-decoration: none;
  11. }
  12. .div {
  13. display: flex;
  14. align-items: center;
  15. }
  16. .button{
  17. margin: 5px 15px;
  18. height: 25px;
  19. border: 1px solid tan;
  20. border-radius: 3px;
  21. cursor: pointer;
  22. background-color: cornsilk;
  23. color: darkred;
  24. position: relative;
  25. font-weight: 600;
  26. left: 10px;
  27. }
  28. .button:hover {
  29. height: 25px;
  30. border: 1px solid darkred;
  31. border-radius: 3px;
  32. cursor: pointer;
  33. background-color: darkred;
  34. color: white;
  35. }
  36. .wrapper{
  37. font-family: Georgia, sans-serif;
  38. display: flex;
  39. justify-content: center;
  40. flex-direction: column;
  41. align-items: center;
  42. height: 100vh;
  43. }
  44. .allButton{
  45. display: flex;
  46. margin: 20px 0 50px 0;
  47. }
  48. .button1, .button2, .button3{
  49. margin: 10px;
  50. cursor: pointer;
  51. color: white;
  52. background-color: darkgreen;
  53. border: none;
  54. border-radius: 3px;
  55. width: 140px;
  56. height: 60px;
  57. font-size: 20px;
  58. }
  59. .allSpan{
  60. margin: 10px 0 100px 0;
  61. }
  62. .span1, .span2 {
  63. margin: 0 10px;
  64. font-size: 18px;
  65. font-weight: 700;
  66. }
  67. .button1:hover, .button2:hover, .button3:hover{
  68. margin: 10px;
  69. cursor: pointer;
  70. color: white;
  71. background-color: darkolivegreen;
  72. border: none;
  73. border-radius: 3px;
  74. width: 140px;
  75. height: 60px;
  76. font-size: 20px;
  77. }
  78. .outResultWinner{
  79. margin-top: 20px;
  80. font-size: 24px;
  81. font-weight: 700;
  82. color: darkred;
  83. min-height: 40px;
  84. }