Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.22 KB | None | 0 0
  1. body {
  2.     margin: 0;
  3.     padding: 1em;
  4.     font-family: sans-serif;
  5. }
  6.  
  7. .banner {
  8.     position:absolute;
  9.     top: 0;
  10.     left: 0;
  11.     width: 100%;
  12.     height: 100%;
  13.     background-image: url(../media/Banner_large.jpg);
  14.     background-repeat:no-repeat;
  15.     background-position: center;
  16.     background-size:contain;
  17. }
  18.  
  19. ul {
  20.     list-style-type: none;
  21.     margin: 0;
  22.     padding: 0;
  23.     overflow: hidden;
  24.     background-color: #333;
  25. }
  26.  
  27. li a {
  28.     float: left;
  29.     display: block;
  30.     color: white;
  31.     text-align: left;
  32.     padding: 14px 16px;
  33. }
  34.  
  35. li a:hover {
  36.     background-color: #111;
  37. }
  38.  
  39. .responsiveRapper {
  40.     overflow:hidden;
  41.     padding-bottom:56.25%;
  42.     padding-top:0px;
  43.     height:0;
  44.     width: 75%;
  45.     position:relative;
  46. }
  47. .responsiveRapper iframe,
  48. .responsiveRapper embed {
  49.     top:0;
  50.     left:0;
  51.     width:53em;
  52.     height:30em;
  53.     position:absolute;
  54. }
  55.  
  56. gallery {
  57.     margin: 10px;
  58.     border: 15px solid #ccc;
  59.     float: left;
  60.     width: 30%;
  61. }
  62.  
  63. gallery:hover {
  64.     border: 1px solid #777;
  65. }
  66.  
  67. gallery img {
  68.     width: 5em;
  69.     height: auto;
  70.     overflow: auto;
  71. }
  72.     span {
  73.             float: right;
  74.         width: 70%;
  75.     margin-top: 10px;
  76.     margin-left: 10px; 
  77.     }
  78.     desc {
  79.     float: left;
  80.     margin-top: 10px;
  81.     margin-left: 10px;
  82.    
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement