Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. body{
  2.     background-color:#222;
  3.     font-family: Adobe Garamond Pro;
  4.     color: #ddd;
  5.  
  6. }
  7. table{
  8.     display: table;
  9.     border-radius: 6px;
  10.     margin:0px auto;
  11.     background-color: white;
  12. }
  13. table, tr, td{
  14.     border-collapse: collapse;
  15.     border: 1px solid gray;
  16.     color: #222;
  17. }
  18. button{
  19.     padding: 12px, 24px;
  20.     margin-top: 24px;
  21.     background-color: #222;
  22.     border-radius: 6px;
  23.     float: center;
  24. }
  25. button:hover, a:hover{
  26.     background-color: white;
  27.     color: #222;
  28. }
  29. a{
  30.     text-decoration: none;
  31.     color: #ddd;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement