Advertisement
Guest User

style.css

a guest
Apr 11th, 2012
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.07 KB | None | 0 0
  1. @import url("../twentyeleven/style.css");
  2. body {
  3.     background: url("images/bg_body.gif") repeat-x scroll left top #9BC3D5;
  4.     color: #4B5D67;
  5. #    font: 70% Verdana,Arial,Helvetica,sans-serif;
  6.     position: relative;
  7. #    text-align: center;
  8. }
  9. #branding {
  10.     background: url("images/bg_header.png") no-repeat scroll center top transparent;
  11.     display: block;
  12.     float: left;
  13. #    height: 620px;
  14.     padding: 0;
  15.     position: relative;
  16.     width: 1000px;
  17. }
  18. #branding #s {
  19.         float: right;
  20.         -webkit-transition-duration: 400ms;
  21.         -webkit-transition-property: width, background;
  22.         -webkit-transition-timing-function: ease;
  23.         -moz-transition-duration: 400ms;
  24.         -moz-transition-property: width, background;
  25.         -moz-transition-timing-function: ease;
  26.         -o-transition-duration: 400ms;
  27.         -o-transition-property: width, background;
  28.         -o-transition-timing-function: ease;
  29.         width: 72px;
  30.         background-color: #f9f9f9;
  31.  
  32. }
  33. #branding #s:focus {
  34.         background-color: #f9f9f9;
  35.         width: 156px;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement