Advertisement
Guest User

Untitled

a guest
Apr 30th, 2015
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. h1 {
  2. text-size: 40px;
  3. color: #CD5C5C;
  4. }
  5.  
  6. table {
  7. border: 6px solid black;
  8. border-collapse: collapse;
  9. }
  10.  
  11. td {
  12. border: 3px solid black;
  13. width: 60px;
  14. height: 60px;
  15. }
  16.  
  17. .lightCell {
  18. background-color: beige;
  19. }
  20.  
  21. .darkCell {
  22. background-color: #A68064;
  23. }
  24.  
  25. .blackCoin {
  26. border-radius: 50%;
  27. background-color: darkslategray;
  28. border: 10px solid black;
  29. height: 40px;
  30. width: 40px;
  31. }
  32.  
  33. .whiteCoin {
  34. border-radius: 50%;
  35. background-color: lightcoral;
  36. border: 10px solid black;
  37. height: 40px;
  38. width: 40px;
  39. }
  40.  
  41. button {
  42. width: 530px;
  43. height: 50px;
  44. text-align: center;
  45. font-family: sans-serif;
  46. font-weight: bold;
  47. font-size: 20px;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement