Advertisement
mic52

Untitled

Feb 1st, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. td {
  2. border: 2px solid #333;
  3. height: 100px;
  4. width: 100px;
  5. text-align: center;
  6. vertical-align: middle;
  7. font-family: "Comic Sans MS", cursive, sans-serif;
  8. font-size: 70px;
  9. cursor: pointer;
  10. }
  11.  
  12. table {
  13. border-collapse: collapse;
  14. position: absolute;
  15. left: 50%;
  16. margin-left: -155px;
  17. top: 50px;
  18. }
  19.  
  20. table tr:first-child td {
  21. border-top: 0;
  22. }
  23.  
  24. table tr:last-child td {
  25. border-bottom: 0;
  26. }
  27.  
  28. table tr td:first-child {
  29. border-left: 0;
  30. }
  31.  
  32. table tr td:last-child {
  33. border-right: 0;
  34. }
  35.  
  36. .endgame {
  37. display: none;
  38. width: 200px;
  39. top: 120px;
  40. background-color: rgba(205,133,63, 0.8);
  41. position: absolute;
  42. left: 50%;
  43. margin-left: -100px;
  44. padding-top: 50px;
  45. padding-bottom: 50px;
  46. text-align: center;
  47. border-radius: 5px;
  48. color: white;
  49. font-size: 2em;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement