Advertisement
Guest User

Abbynorway - css style sheet

a guest
Feb 2nd, 2014
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. `/*
  2. Welcome to Custom CSS!
  3.  
  4. CSS (Cascading Style Sheets) is a kind of code that tells the browser how
  5. to render a web page. You may delete these comments and get started with
  6. your customizations.
  7.  
  8. By default, your stylesheet will be loaded after the theme stylesheets,
  9. which means that your rules can take precedence and override the theme CSS
  10. rules. Just write here what you want to change, you don't need to copy all
  11. your theme's stylesheet content.
  12. */
  13. #branding {
  14. border-top: none;
  15. }
  16.  
  17. #hwidget {
  18. position: absolute;
  19. top: 3em;
  20. right: 10%;
  21. text-align: right;
  22. }
  23.  
  24. #hwidget {
  25. display: inline;
  26. }
  27.  
  28. #branding #searchform {
  29. display: inline;
  30. }
  31.  
  32. #site-title img {
  33. width: 200px;
  34. }
  35.  
  36. #page {
  37. border: 1px;
  38. border-style: solid;
  39. border-color: #D2D6D4;
  40. }
  41.  
  42. #h3 {
  43. font-family: 'Quattrocento', arial, sans-serif;
  44. color: #333333;
  45. font-size: 64px;
  46. font-weight: normal;
  47. line-height: 73px;
  48. text-decoration: none;
  49. }
  50.  
  51. h4 {
  52. color: #333333;
  53. font-size: 27px;
  54. font-weight: normal;
  55. line-height: 50px;
  56. text-decoration: none;
  57. }
  58.  
  59. h5 {
  60. color: #333333;
  61. font-family: 'Lato', sans-serif;
  62. font-size: 17px;
  63. font-weight: bold;
  64. line-height: 37px;
  65. text-decoration: none;
  66. }
  67.  
  68. p {
  69. color: #555555;
  70. font-size: 17px;
  71. font-weight: normal;
  72. line-height: 27px;
  73. text-decoration: none;
  74. margin: 7px;
  75. }
  76.  
  77. body, input, textarea {
  78. color: #333333;
  79. }
  80.  
  81. #site-generator {
  82. display: none;
  83. }
  84.  
  85. .content-box-blue,
  86. .content-box-gray,
  87. .content-box-green,
  88. .content-box-purple,
  89. .content-box-red,
  90. .content-box-yellow {
  91. margin: 0 0 25px;
  92. overflow: hidden;
  93. padding: 20px;
  94. }
  95.  
  96. .content-box-blue {
  97. background-color: #d8ecf7;
  98. border: 1px solid #afcde3;
  99. }
  100.  
  101. .content-box-gray {
  102. background-color: #F9F9F9;
  103. border: 1px solid #bdbdbd;
  104. }
  105.  
  106. .content-box-green {
  107. background-color: #d9edc2;
  108. border: 1px solid #b2ce96;
  109. }
  110.  
  111. .content-box-purple {
  112. background-color: #e2e2f9;
  113. border: 1px solid #bebde9;
  114. }
  115.  
  116. .content-box-red {
  117. background-color: #f9dbdb;
  118. border: 1px solid #e9b3b3;
  119. }
  120.  
  121. .content-box-yellow {
  122. background-color: #fef5c4;
  123. border: 1px solid #fadf98;
  124. }
  125.  
  126. #secondary aside {
  127. margin: 0;
  128. margin-top: 36px;
  129. width: 330px;
  130. }
  131.  
  132. #KontaktAlexButton {
  133. float: right;
  134. }
  135.  
  136. #footer {
  137. padding-top: 150px;
  138. }
  139.  
  140. #sendpress-signup-form p {
  141. margin: -20px;
  142. width: 220px;
  143. }
  144.  
  145. /* input fields in sign up form */
  146. .sendpress-signup-form input {
  147. max-width: 60%;
  148. padding-right: 10px;
  149. }
  150.  
  151. #form-wrap {
  152. margin: -20px;
  153. width: 220px;
  154. }
  155.  
  156. form description {
  157. color: #46C1D1;
  158. }
  159.  
  160. #form {
  161. margin: -20px;
  162. margin-top: 10px;
  163. width: 200px;
  164. }
  165.  
  166. form input, form input textarea {
  167. font-size: 12px;
  168. color: #666;
  169. }
  170.  
  171. form input, form label {
  172. font-size: 100%;
  173. color: #666;
  174. }
  175.  
  176. form input, margin {
  177. font-size: 80%;
  178. color: #666;
  179. }
  180.  
  181. form input, sendpress-submit {
  182. margin-top: 5px;
  183. background-color: #46C1D1;
  184. color: #ffffff;
  185. font-size: 15px;
  186. }
  187.  
  188. .wpcf7-form input, .wpcf7-form textarea {
  189. font-size: 11px;
  190. color: #666;
  191. }
  192.  
  193. .wpcf7-form label {
  194. font-size: 11px;
  195. color: #666;
  196. }
  197.  
  198. .wpcf7-form p {
  199. font-size: 11px;
  200. color: #666;
  201. }
  202.  
  203. h1.showcase-heading {
  204. display: none;
  205. }`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement