Advertisement
srikat

style.css

May 2nd, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.78 KB | None | 0 0
  1. body {
  2.     font-family: 'Open Sans', sans-serif;
  3.     color: #333;
  4. }
  5.  
  6. .home-featured .wrap {
  7.     padding-top: 40px;
  8.     padding-bottom: 62px;
  9.     background: url(images/lafoto.png) no-repeat left bottom;
  10. }
  11.  
  12. .home-featured .widget-area {
  13.     width: 40%;
  14.     float: right;
  15. }
  16.  
  17. .home-featured .enews-widget {
  18.     width: 90%;
  19.     color: #333;
  20. }
  21.  
  22. .home-featured .enews-widget h4 {
  23.     border-bottom: 1px solid #808080;
  24.     font-family: Playball,cursive;
  25.     font-size: 30px;
  26.     line-height: 1.3;
  27.     padding-bottom: 15px;
  28.     padding-top: 10px;
  29.     text-align: center;
  30.     text-transform: none;
  31.     color: #333;
  32. }
  33.  
  34. .home-featured .enews-widget form {
  35.     background: #E14D43;
  36.     margin-top: 25px;
  37.     padding: 20px;
  38.     position: relative;
  39. }
  40.  
  41. .home-featured .enews-widget input {
  42.     font-size: 16px;
  43. }
  44.  
  45. .home-featured .enews-widget input[type="submit"] {
  46.     background: url(images/apuntame.png) no-repeat;
  47.     width: 90px;
  48.     height: 90px;
  49.     position: absolute;
  50.     right: 10px;
  51.     bottom: -60px;
  52.     text-indent: -9999em;
  53. }
  54.  
  55. .home-featured .enews-widget input[type="submit"]:hover {
  56.     background: url(images/apuntamehover.png) no-repeat;
  57. }
  58.  
  59. .welcome {
  60.     background: #303236;
  61.     border-top: 5px solid #E14D43;
  62.     color: #ccc;
  63.     text-align: center;
  64. }
  65.  
  66. .welcome .wrap {
  67.     padding-top: 40px;
  68.     padding-bottom: 40px;
  69. }
  70.  
  71. .welcome a {
  72.     color: #fff;
  73. }
  74.  
  75. .nombretest {
  76.     font-family: Playball,cursive;
  77.     font-size: 20px;
  78.     margin-top: 15px;
  79. }
  80.  
  81. @media only screen and (max-width: 631px) {
  82.  
  83.     .home-featured .wrap {
  84.         padding-left: 5%;
  85.         padding-right: 5%;
  86.     }
  87.  
  88.     .home-featured .widget-area, .home-featured .enews-widget {
  89.         width: 100%;
  90.     }
  91.  
  92.     .home-featured .enews-widget h4, .home-featured .enews-widget p {
  93.         background: rgba(255, 255, 255, 0.92);
  94.     }
  95.  
  96.     .home-featured .enews-widget form {
  97.         background: rgba(225, 77, 67, 0.5);
  98.     }
  99.  
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement