Advertisement
srikat

style.css

Jan 8th, 2014
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.53 KB | None | 0 0
  1. /* Custom styles by Sridhar */
  2.  
  3. body {
  4.     background: #000;
  5. }
  6.  
  7. .site-header .widget-area {
  8.     text-align: right;
  9.     color: #fff;
  10.     width: 29%;
  11. }
  12.  
  13. .header-image .title-area,
  14. .header-image .site-title,
  15. .header-image .site-title a {
  16.     min-height: 150px;
  17.     max-width: none;
  18. }
  19.  
  20. .header-image .title-area {
  21.     width: 71%;
  22. }
  23.  
  24. .header-image .site-title,
  25. .header-image .site-title a {
  26.     width: 100%;
  27. }
  28.  
  29. .phone-number {
  30.     font-size: x-large;
  31. }
  32.  
  33. @media only screen and (max-width: 1200px) {
  34.  
  35.     .header-image .site-title a {
  36.         background-size: contain !important;
  37.     }
  38.  
  39. }
  40.  
  41. @media only screen and (max-width: 1023px) {
  42.  
  43.     .header-image .title-area,
  44.     .header-image .site-title,
  45.     .header-image .site-title a {
  46.         float: left;
  47.     }
  48.  
  49. }
  50.  
  51. @media only screen and (max-width: 768px) {
  52.  
  53.     .site-header {
  54.         padding-left: 2%;
  55.         padding-right: 2%;
  56.     }
  57. }
  58.  
  59. @media only screen and (max-width: 568px) {
  60.  
  61.     .header-image .title-area {
  62.         width: 100%;
  63.     }
  64.  
  65.     .header-image .title-area,
  66.     .header-image .site-title,
  67.     .header-image .site-title a {
  68.         float: none;
  69.     }
  70.  
  71.     .site-header .widget-area {
  72.         width: 100%;
  73.         text-align: center;
  74.     }
  75.  
  76.     .header-image .title-area, .header-image .site-title, .header-image .site-title a {
  77.         min-height: 100px;
  78.     }
  79.  
  80.     .site-header {
  81.         padding-left: 5%;
  82.         padding-right: 5%;
  83.     }
  84.  
  85. }
  86.  
  87. @media only screen and (max-width: 320px) {
  88.  
  89.     .header-image .title-area, .header-image .site-title, .header-image .site-title a {
  90.         min-height: 80px;
  91.     }
  92.  
  93.     .site-header .widget {
  94.         padding-top: 0;
  95.     }
  96.  
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement