Advertisement
Guest User

CSS Code

a guest
May 9th, 2012
475
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.45 KB | None | 0 0
  1. body {
  2.     height: 100%;
  3.     margin: 0;
  4.     padding: 0;
  5.     background-color:#F4F4F4;
  6.  
  7. }
  8. H1 { /* Sets the style for the <h1> tag */
  9.     font-size:30px;
  10.     font-family:calibri;
  11.     text-weight:bold;
  12.     color:#EDEFF2;
  13.     padding-top:5px;
  14. }  
  15. .footer { /* The style for the footer of the page (where the copyright notice is) */
  16.     bottom:0;
  17.     width: 100%;
  18.     margin-left: 0px;
  19.     height: 100px;
  20.     border-top: 1px solid silver;
  21. }
  22. #navigation {
  23.     position: fixed;
  24.     top: 0;
  25.     width: 100%;
  26.     color: #ffffff;
  27.     font-family:calibri;
  28.     height: 35px;
  29.     text-align: center;
  30.     padding-top: 15px;
  31.     -webkit-box-shadow: 0px 0px 8px 0px #000000;
  32.     -moz-box-shadow: 0px 0px 8px 0px #000000;
  33.     box-shadow: 0px 0px 8px 0px #000000;
  34.     background-image: url('navbar.png');
  35.     color: #FFFFFF;
  36. }
  37. #navigation a {
  38.     font-size: 14px;
  39.     padding-left: 15px;
  40.     padding-right: 15px;
  41.     color: white;
  42.     text-decoration: none;
  43. }
  44. #navigation a:hover {
  45.     color: grey;
  46.     text-decoration:none;
  47. }
  48. .copyright-text {
  49.     font-family:cambria;
  50.     font-size:15px;
  51. }
  52. .main-content-font {
  53.     font-family: calibri;
  54.     font-size:15px;
  55. }
  56. #search {
  57.     padding:5;
  58.     background:#ffffff;
  59.     border: 1px solid #E5E5E5;
  60.     border-radius:8px;
  61.     outline:none;
  62.     font-family:cambria;
  63.     -webkit-transition: background-color .2s ease-in,
  64.         background-position .2s ease-in,
  65.         box-shadow .3s ease-in;
  66.     -moz-transition: background-color .2s ease-in,
  67.         background-position .2s ease-in,
  68.         box-shadow .3s ease-in;
  69.  
  70.     -o-transition: background-color .2s ease-in,
  71.         background-position .2s ease-in,
  72.         box-shadow .3s ease-in;
  73.  
  74.     -ms-transition: background-color .2s ease-in,
  75.         background-position .2s ease-in,
  76.         box-shadow .3s ease-in;
  77.  
  78.     transition: background-color .2s ease-in,
  79.         background-position .2s ease-in,
  80.         box-shadow .3s ease-in;
  81. }
  82. #search:focus {
  83.     box-shadow: 0px 0px 25px 0px #333;
  84. }
  85. #searchsubmit {
  86.     background: transparent url("http://www.aniboom.com/Resources/images/Header/SearchButton.png") no-repeat;
  87.     width: 20px;
  88.     height: 20px;
  89.     border: none;
  90.     cursor: pointer;
  91.     margin-top: 1px;
  92. }
  93. #searchsubmit:hover {
  94.     opacity:.5;
  95. }
  96. #pagehead {
  97.     padding:20;
  98.     margin-top:50px;
  99.     width:100%
  100.     height:200px;
  101.     font-size:30px;
  102.     font-family:cambria;
  103.     font-weight:bold;
  104.     background-color:#E5E5E5
  105. }
  106. #pagecontent {
  107.     padding:20px;
  108.     background-color:#FFFFFF;
  109.     width:700px;
  110.     border:2px solid #E5E5E5;
  111.     border-radius:5px;
  112. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement