base.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #score {
  2. border: 6px solid white;
  3. border-radius: 10px;
  4. width: 200px;
  5. height: 100px;
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. color: white;
  10. font-size: 4em;
  11. text-shadow: 2px 2px 2px black;
  12. margin: 1em;
  13. }
  14. #description {
  15. font-size: 5em;
  16. color: white;
  17. height: 150px;
  18. text-shadow: 2px 2px 2px black;
  19. }
  20. .header {
  21. font-size: 3em;
  22. color: white;
  23. background: #404040;
  24. text-align: center;
  25. height: 2.5em;
  26. text-shadow: 4px 4px 4px black;
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. }
  31. .container {
  32. display: flex;
  33. justify-content: center;
  34. align-items: center;
  35. flex-direction: column;
  36. }
  37. .selection {
  38. display: flex;
  39. justify-content: center;
  40. }
  41. .selection > div {
  42. margin: 1em;
  43. }
  44. img {
  45. margin: 0.5em;
  46. height: 196px;
  47. }
  48. .base {
  49. border-radius: 50%;
  50. padding: 0.25em;
  51. }
  52. .unselected {
  53. border: 8px solid white;
  54. }
  55. .selected {
  56. border: 8px solid green;
  57. }
  58. .aiSelected {
  59. border: 8px solid red;
  60. }
  61. body {
  62. background: #202020;
  63. margin: 0;
  64. }