style.css 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. html {
  2. height: 100%;
  3. min-height: 100%;
  4. }
  5. body {
  6. min-height: 100%;
  7. font-family: 'Oswald', sans-serif;
  8. background: url('http://yakidoo.de/wp-content/uploads/2013/11/6cba2e656b13953e1ff56b93134683cc.jpg') no-repeat center center fixed;
  9. -webkit-background-size: cover;
  10. -moz-background-size: cover;
  11. -o-background-size: cover;
  12. background-size: cover;
  13. }
  14. #header {
  15. height: auto;
  16. background-color: white;
  17. font-family: 'Neuropolitical', sans-serif;
  18. }
  19. #headertext {
  20. margin: 0;
  21. font-size: 350%;
  22. margin-right: 5px;
  23. }
  24. .container {
  25. /*-webkit-box-shadow: 0 9px 0px 0px white, 0 -9px 0px 0px white, 10px 0px 30px 0px rgba(0, 0, 0, 0.15), -10px 0px 30px 0px rgba(0, 0, 0, 0.15);
  26. -moz-box-shadow: 0 9px 0px 0px white, 0 -9px 0px 0px white, 10px 0px 30px 0px rgba(0, 0, 0, 0.15), -10px 0px 30px 0px rgba(0, 0, 0, 0.15);
  27. box-shadow: 9px 0px 9px gray;*/
  28. }
  29. #nav {
  30. background: white;
  31. }
  32. #main-nav {
  33. list-style-type: none;
  34. background-color: #2D2D2D;
  35. margin-left: 0;
  36. margin-bottom: 0;
  37. text-align: center;
  38. }
  39. #main-nav>li {
  40. padding: 15px;
  41. }
  42. #main-nav>li:hover {
  43. background-color: #808080!important;
  44. }
  45. #main-nav>li>a {
  46. color: white;
  47. font-size: 20px;
  48. font-weight: 700;
  49. text-transform: uppercase;
  50. }
  51. #main-nav>li>a:hover {
  52. text-decoration: none;
  53. }
  54. #sub-menu {
  55. background-color: #e2e2e2;
  56. text-transform: uppercase;
  57. font-size: 15px;
  58. color: gray;
  59. height: 100%;
  60. padding: 5px;
  61. font-weight: 200;
  62. }
  63. #sub-menu > #breaking > span {
  64. float: left;
  65. }
  66. #breaking > ul {
  67. list-style-type: none;
  68. overflow: hidden;
  69. padding-left: 2px;
  70. margin: 0px;
  71. }
  72. #breaking {
  73. width: 30%;
  74. padding: 0 10px;
  75. }
  76. #breaking a {
  77. color: inherit;
  78. }
  79. #sub-menu-menu > ul {
  80. list-style-type: none;
  81. margin: 0px;
  82. }
  83. #sub-menu-menu > ul li {
  84. display: inline;
  85. padding: 5px 10px;
  86. }
  87. #sub-menu-menu > ul li:hover {
  88. background: #2D2D2D none repeat scroll 0% 0%;
  89. border-top: 1px solid yellow;
  90. }
  91. #sub-menu-menu a {
  92. color: #999;
  93. }
  94. #sub-menu-menu a:hover {
  95. color: #F5F5F5;
  96. text-decoration: none !important;
  97. }
  98. #wrapper {
  99. background-color: white;
  100. }
  101. #content {
  102. margin: 30px;
  103. }
  104. .row {
  105. padding-top: 30px; /* 10px */
  106. }
  107. .img-responsive {
  108. opacity: 0.8;
  109. }
  110. .image-wrapper {
  111. background: #808080;
  112. overflow: hidden;
  113. }
  114. /*.image-wrapper img {
  115. width: 300px;
  116. height: 200px;
  117. }*/
  118. .post-image .image-wrapper img:hover {
  119. opacity: 0.6;
  120. transition: all 0.5s ease 0s;
  121. }
  122. .post {
  123. background: #f2f2f2;
  124. margin-bottom: 30px;
  125. width: auto;
  126. /*height: 200px;*/
  127. }
  128. .post-content {
  129. padding: 10px 20px 10px 10px;
  130. width: 55.1%;
  131. }
  132. .post-image {
  133. width: 43.4%;
  134. margin: 0 1% 0 0;
  135. }
  136. .zoom-image {
  137. -webkit-transform: scale(1,1);
  138. -webkit-transition-timing-function: ease-out;
  139. -webkit-transition-duration: 500ms;
  140. -moz-transform: scale(1,1);
  141. -moz-transition-timing-function: ease-out;
  142. -moz-transition-duration: 500ms;
  143. transform: scale(1,1);
  144. transition-timing-function: ease-out;
  145. transition-duration: 500ms;
  146. }
  147. .zoom-image:hover {
  148. -webkit-transform: scale(1.1,1.1);
  149. -webkit-transition-timing-function: ease-out;
  150. -webkit-transition-duration: 500ms;
  151. -moz-transform: scale(1.1,1.1);
  152. -moz-transition-timing-function: ease-out;
  153. -moz-transition-duration: 500ms;
  154. transform: scale(1.1,1.1);
  155. transition-timing-function: ease-out;
  156. transition-duration: 500ms;
  157. }
  158. .post-title {
  159. font-size: 20px;
  160. font-weight: 700;
  161. margin-top: 0px;
  162. }
  163. .post-title a {
  164. color: inherit;
  165. }
  166. .post-meta {
  167. font-size: 12px;
  168. }
  169. .post-meta span {
  170. margin-right: 5px;
  171. }
  172. .post-author {
  173. }
  174. .post-author > i, .post-date > i, .post-categories > i {
  175. margin-right: 7px;
  176. }
  177. .post-categories {
  178. text-transform: uppercase;
  179. }
  180. .post-categories a {
  181. color: inherit;
  182. }
  183. .post-excerpt {
  184. margin-top: 10px;
  185. }
  186. .widget {
  187. width: 100%;
  188. }
  189. .widget-title {
  190. margin: 0;
  191. margin-bottom: 15px;
  192. padding: 10px;
  193. text-align: center;
  194. background: #f2f2f2;
  195. }
  196. .social-widget img {
  197. max-width: 100%;
  198. }
  199. footer {
  200. border-top: 20px solid #333333;
  201. color: #f2f2f2;
  202. border-bottom: 15px solid #FFFFFF;
  203. }
  204. .footer-wrapper {
  205. background: #272727;
  206. padding: 10px 0px;
  207. }
  208. .footer-title {
  209. padding: 15px;
  210. text-align: center;
  211. }
  212. .footer-title > span {
  213. border-bottom: 3px solid #333333;
  214. text-align: center;
  215. text-transform: uppercase;
  216. }
  217. #recent-posts > ul {
  218. list-style-type: none;
  219. }
  220. .recent-posts-thumb {
  221. width: 30%;
  222. }
  223. .recent-posts-thumb img {
  224. background: #808080;
  225. }
  226. .recent-posts-teaser {
  227. width: 70%;
  228. }
  229. .recent-posts-teaser div {
  230. font-size: 11px;
  231. }
  232. #featured-wrapper .image-wrapper {
  233. background: #000000;
  234. }
  235. #featured-wrapper img {
  236. opacity: 0.6;
  237. }
  238. #featured-wrapper img:hover {
  239. opacity: 0.5;
  240. }
  241. /*#featured-wrapper .row:first-of-type {
  242. padding-top: 5px;
  243. }*/
  244. .featured-meta {
  245. position: absolute;
  246. left: 0;
  247. bottom: 0;
  248. width: 100%;
  249. color: #FFFFFF;
  250. text-transform: uppercase;
  251. text-align: center;
  252. margin-bottom: 15px;
  253. }
  254. .featured-meta h3, .featured-meta h4 {
  255. font-weight: 700;
  256. letter-spacing: 2px;
  257. line-height: 1.7;
  258. margin-bottom: 15px;
  259. }
  260. .featured-meta h3 a, .featured-meta h4 a {
  261. border-bottom: 2px solid #FFF;
  262. color: inherit;
  263. }
  264. .featured-meta h3 a:hover, .featured-meta h4 a:hover {
  265. text-decoration: none;
  266. }