Advertisement
Guest User

list-item-css

a guest
Mar 18th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. html {
  2.     background-color: hsl(252, 42%, 12%);
  3.     color: white;
  4. }
  5. .queue-list-item-image img {
  6.     width: 100%;
  7.     height: 100%;
  8. }
  9.  
  10. .queue-list-item-image{
  11.     width: 50px;
  12.     height: 50px;
  13. }
  14.  
  15. /* Flex Classes */
  16. .flex{
  17.     display: flex;
  18. }
  19. .flex-wrap{
  20.     flex-wrap: wrap;
  21. }
  22. .flex-end{
  23.     flex-direction: end;
  24. }
  25. .align-center{
  26.     align-items: center;
  27. }
  28. .flex-column{
  29.     flex-direction: column;
  30. }
  31.  
  32. /* CSS RESET */
  33. body,
  34. h1,
  35. h2,
  36. h3,
  37. h4,
  38. h5,
  39. h6,
  40. ul,
  41. ol,
  42. li,
  43. p,
  44. pre,
  45. blockquote,
  46. figure,
  47. hr {
  48.   margin: 0;
  49.   padding: 0;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement