NYanev

Task4

Oct 17th, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.92 KB | None | 0 0
  1. /*reset*/
  2. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  3.         margin: 0;
  4.         padding: 0;
  5.         border: 0;
  6.         outline: 0;
  7.         font-weight: inherit;
  8.         font-style: inherit;
  9.         font-size: 100%;
  10.         font-family: inherit;
  11.         vertical-align: baseline;
  12. }
  13.  
  14. body {
  15.     font-family: Arial, Tahoma, Verdana, sans-serif;
  16.     font-size: 12px;
  17.     color: #889592;
  18.    
  19. }
  20.  
  21.     body div {
  22.         background: #1E3741;
  23.         padding: 10px 0px;
  24.         width: 640px;
  25.         border-top-left-radius:15px;
  26.         border-bottom-right-radius:15px;
  27.         margin:auto;
  28.     }
  29.  
  30. header {
  31.     margin: 0px 10px;
  32.     height: 30px;
  33. }
  34.  
  35.     header nav ul {
  36.         display: inline;
  37.     }
  38.  
  39.         header nav ul li {
  40.             list-style-type: none;
  41.             float: left;
  42.             padding: 0px 14px;
  43.             margin-left: 1px;
  44.             background: #4b5f67;
  45.             font-size: 11px;
  46.         }
  47.  
  48.             header nav ul li a {
  49.                 color: #9faa92;
  50.                 text-decoration: none;
  51.                 font-weight: bold;
  52.                 line-height: 30px;
  53.             }
  54.  
  55.             header nav ul li:active, header nav ul li.menu {
  56.                 background-color: transparent;
  57.             }
  58.  
  59.                 header nav ul li:active a, header nav ul li.menu a {
  60.                     color: #fff;
  61.                 }
  62.  
  63.             header nav ul li a:hover {
  64.                 text-decoration: underline;
  65.             }
  66.  
  67. section {
  68.     padding-top: 20px;
  69.     width: auto;
  70.     display: block;
  71.     position: relative;
  72. }
  73.  
  74.     section article {
  75.         display: block;
  76.         border-bottom: 1px solid rgba(155, 155, 155, 0.4);
  77.         margin: 0px;
  78.         padding: 10px 10px 10px 20px;
  79.         width: 237px;
  80.     }
  81.  
  82.         section article:last-of-type {
  83.             border-bottom: none;
  84.         }
  85.  
  86.         section article a {
  87.             text-decoration: none;
  88.             color: #9faa92;
  89.             font-size: 12px;
  90.             font-weight: bold;
  91.         }
  92.  
  93.         section article:hover, section article.selected {
  94.             background: #00968c;
  95.         }
  96.  
  97.                 section article:hover a, section article.selected a {
  98.                     color: #fff;
  99.                 }
  100.  
  101.         section article img {
  102.             display: none;
  103.             width: 325px;
  104.             height: 235px;
  105.             position: absolute;
  106.             top: 20px;
  107.             right: 48px;
  108.         }
  109.  
  110.         section article.selected img {
  111.             display: block;
  112.         }
  113.  
  114.         section article:hover img {
  115.             display: block;
  116.             z-index: 100;
  117.         }
Advertisement
Add Comment
Please, Sign In to add comment