Advertisement
pacho_the_python

Untitled

Nov 3rd, 2022
1,269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. ul {
  2.     list-style: none;
  3.     background-color: blanchedalmond;
  4.     padding: 0.5rem;
  5. }
  6.  
  7. ul li a {
  8.     color: darkred;
  9.     display: inline-block;
  10.     text-decoration: none;
  11.     padding: 0.5rem;
  12. }
  13.  
  14. button {
  15.     padding: 0.5rem;
  16.     cursor: pointer;
  17.     color: white;
  18. }
  19.  
  20. .checkout {
  21.     background-color: limegreen;
  22.     border-color: darkgreen;
  23. }
  24.  
  25. .info {
  26.     background-color: dodgerblue;
  27.     border-color: darkblue;
  28. }
  29.  
  30. .delete {
  31.     background-color: red;
  32.     border-color: darkred;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement