Advertisement
Alimaggs

Afternoon2

May 11th, 2019
439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.71 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.  
  14. }
  15.  
  16. .movie-poster img {
  17.     max-width: 100px;
  18. }
  19.  
  20. .movie-info {
  21.     display: flex;
  22.     color: white;
  23.     background-color: blue;
  24. }
  25.  
  26. /* select all links */
  27.  
  28. a {
  29.  
  30. }
  31.  
  32. .movie-description a {
  33.     text-decoration-line: none;
  34.     color: teal;
  35. }
  36.  
  37. .movie-description a:hover {
  38.     text-decoration-line: underline;
  39. }
  40.  
  41. .movie{
  42.     max-width: 800px;
  43.     margin: auto;
  44.     position: relative;
  45. }
  46.  
  47. .movie-title{
  48.     color: white;
  49.     background-color: #2a4468;
  50.     height: 50px;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement