Alimaggs

Movie Site as of Lunch (CSS)

May 11th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. * {
  2.     outline: 0.1px solid lightgray !important;
  3. }
  4.  
  5. * {
  6.     -webkit-box-sizing: border-box;
  7.     -moz-box-sizing: border-box;
  8.     -ms-box-sizing: border-box;
  9.     box-sizing: border-box;
  10. }
  11.  
  12. .movie-description{
  13.     color: red;
  14. }
  15.  
  16. .movie-poster img{
  17.     max-width: 100px;
  18. }
  19.  
  20. .movie-info{
  21.     display: flex;
  22. }
  23.  
  24. /* select all links */
  25. a{
  26.  
  27. }
  28.  
  29. .movie-description a{
  30.     text-decoration-line: none;
  31.     color: teal;
  32. }
  33.  
  34. .movie-description a:hover{
  35.     text-decoration-line: underline;
  36. }
Add Comment
Please, Sign In to add comment