coasterka

SampleExamCSSTask1

Jun 8th, 2014
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.07 KB | None | 0 0
  1. html, body {
  2.     font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  3. }
  4.  
  5. header{
  6.     height: 60px;
  7.     position: relative;
  8.     background: repeating-linear-gradient(
  9.         90deg,
  10.         #f6f5e9,
  11.         #f6f5e9 8px,
  12.         white 8px,
  13.         white 10px
  14.     );
  15. }
  16.  
  17. header h1{
  18.     font-size: 16px;
  19.     color: #323232;
  20.     text-transform: uppercase;
  21.     top: 15px;
  22.     padding-left: 15px;
  23.     position: relative;
  24. }
  25.  
  26. #nav{
  27.     bottom: 15px;
  28.     position: relative;
  29. }
  30.  
  31. #wrapper {
  32.     width: 960px;
  33.     margin: 0 auto;
  34. }
  35.  
  36. #content h1 {
  37.     font-size: 24px;
  38. }
  39.  
  40. #nav li, #content {
  41.     color: #323232;
  42. }
  43.  
  44. #nav, #archives, #search {
  45.     font-size: 14px;
  46. }
  47.  
  48. #content article {
  49.     font-size: 14px;
  50. }
  51.  
  52. #archives, #archives a, #search a {
  53.     text-decoration: none;
  54.     color: white;
  55. }
  56.  
  57. #searchBar {
  58.     background: black; 
  59.     height: 40px;
  60.     position: relative;
  61. }
  62.  
  63. #archives, #search {
  64.     position: relative;
  65.     height: 20px;
  66. }
  67.  
  68. #archives{
  69.     top: 10px;
  70.     padding-left: 10px;
  71. }
  72.  
  73. #search {
  74.     bottom: 10px;
  75.     float: right;
  76.     padding-right: 10px;
  77. }
  78.  
  79. #nav li {
  80.     float: right;
  81.     margin-right: 20px;
  82.     list-style: none;
  83. }
Advertisement
Add Comment
Please, Sign In to add comment