styles.css 937 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* CSS Styling for Connect 4 Video Game*/
  2. /* Button Styling for "Start Game" button */
  3. .button {
  4. background-color:white; /* Green */
  5. padding: 16px 32px;
  6. text-align: center;
  7. text-decoration: none;
  8. display: inline-block;
  9. font-size: 16px;
  10. margin: 4px 2px;
  11. transition-duration: 0.75s;
  12. cursor: pointer;
  13. border-radius: 30px; /* Rounded Edges */
  14. border: 2px solid #222222; /* Black border */
  15. margin:0 auto;
  16. display:block;
  17. }
  18. /* Text styling */
  19. .text {
  20. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  21. text-align: center;
  22. }
  23. /* Styling when user hovers */
  24. .button:hover {
  25. background-color: #222222; /* Black */
  26. color: white;
  27. }
  28. /* Style body */
  29. body {
  30. margin: 0;
  31. overflow: hidden;
  32. }
  33. /* Style canvas */
  34. canvas {
  35. display: block;
  36. }