Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. body {
  2. background-image: url("../img/back2.jpg");
  3. background-size: cover;
  4. background-attachment: fixed;
  5. }
  6.  
  7. .links {
  8. background-color: lightskyblue;
  9. padding: 5px;
  10. margin: 5px;
  11. float: left;
  12. font-size: 0.6em;
  13. width: 15%;
  14. }
  15.  
  16.  
  17. a {
  18. text-decoration: none;
  19. }
  20.  
  21. a:hover {
  22. background-color: lawngreen;
  23. }
  24.  
  25.  
  26. ul li {
  27. list-style-type: none;
  28.  
  29. }
  30.  
  31. nav {
  32. background-color: lightcyan;
  33. width: 25%;
  34. float: left;
  35. height: 250px;
  36. }
  37.  
  38. section {
  39. background-color: lightgreen;
  40. width: 50%;
  41. float: left;
  42. height: 850px;
  43. }
  44. article {
  45.  
  46. width: 46%;
  47. float: left;
  48. height: 400px;
  49. text-align: left;
  50. background-color: white;
  51. background-image: url("../img/julesandvincent.jpg");
  52. }
  53.  
  54. #video {
  55. position: relative;
  56. margin: 5%;
  57. width: 90%;
  58. height: 90%;
  59. }
  60.  
  61. #video iframe{
  62. position: absolute;
  63. top: 0px;
  64. left: 0px;
  65. width: 100%;
  66. height: 100%;
  67. }
  68.  
  69. .whole {
  70. width: 96%;
  71. clear: both;
  72. background-color: lightcyan;
  73. }
  74.  
  75. aside {
  76. background-color: lightcyan;
  77. width: 25%;
  78. float: left;
  79. height: 250px;
  80. }
  81.  
  82. footer {
  83.  
  84. clear: both;
  85. height: 200px;
  86. background-color: lightblue;
  87. text-align: center;
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement