Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. :root {
  2. --timeout: 500ms;
  3. --list-item-max-height: 30px;
  4. }
  5.  
  6. ul {
  7. margin: 0;
  8. padding: 0 10px;
  9. }
  10.  
  11. .container {
  12. display: flex;
  13. }
  14.  
  15. .comics {
  16. width: 50%;
  17. margin: 0;
  18. padding: 0;
  19. list-style-type: none;
  20. }
  21.  
  22. .comic {
  23. padding: 10px;
  24. cursor: pointer;
  25. }
  26.  
  27. .star {
  28. margin-left: 5px;
  29. color: gold;
  30. }
  31.  
  32. .favorites {
  33. box-sizing: border-box;
  34. width: 50%;
  35. padding: 10px;
  36. background-color: rgb(64, 110, 235);
  37. }
  38.  
  39. .list-item {
  40. padding: 10px;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement