1
0

style.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. /*
  2. Theme Name: AmS 2016
  3. Theme URI: http://architekturmachtschule.de/
  4. Author: Moritz Schmidt
  5. Author URI: https://mmnx.de/
  6. Description: n/a
  7. Version: 1.0
  8. License: GNU General Public License v2 or later
  9. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  10. Tags:
  11. Text Domain: ams2016
  12. */
  13. .carousel-control {
  14. background: none !important;
  15. }
  16. .carousel-control .icon-next::before, .carousel-control .icon-prev::before {
  17. content: none;
  18. }
  19. .carousel-control .icon-next .fa-chevron-right:before, .carousel-control .icon-prev .fa-chevron-left:before {
  20. position: absolute;
  21. left: 8px;
  22. top: 4px;
  23. font-size: 25px;
  24. }
  25. .fa-chevron-right, .fa-chevron-left {
  26. background: #008238;
  27. border-radius: 50%;
  28. padding: 16px;
  29. }
  30. .carousel-control .icon-prev .fa-chevron-left:before {
  31. left: 4px;
  32. }
  33. .carousel-inner > .carousel-item > img {
  34. width: 100%;
  35. }
  36. .carousel {
  37. max-height: 350px;
  38. overflow: hidden;
  39. }
  40. .navbar {
  41. background: #C0C0C0;
  42. position: -webkit-sticky;
  43. position: sticky;
  44. top: 0;
  45. width: 100%;
  46. border-radius: 0;
  47. z-index: 99;
  48. }
  49. .beam {
  50. margin-top: 50px;
  51. margin-bottom: 50px;
  52. text-align: center;
  53. font-family: 'Special Elite', cursive;
  54. }
  55. .beam h1 {
  56. font-size: 60px;
  57. text-align: left;
  58. }
  59. .beam + .container {
  60. font-family: 'Special Elite', cursive;
  61. font-size: 18px;
  62. line-height: 30px;
  63. }
  64. /*.beam > .container > * {
  65. margin: 0;
  66. text-transform: uppercase;
  67. }*/
  68. .beam ~ .beam {
  69. margin-top: 50px;
  70. }
  71. .teaser {
  72. font-size: 27px;
  73. line-height: 35px;
  74. color: #000000;
  75. }
  76. .content-wrapper {
  77. position: relative;
  78. padding: 10px 0;
  79. margin-bottom: 25px;
  80. }
  81. .content-wrapper:first-of-type {
  82. padding-top: 1px;
  83. margin-top: -1px; /* weird bug idk */
  84. }
  85. .content-wrapper::before {
  86. content: " ";
  87. position: absolute;
  88. width: 100%;
  89. height: 100%;
  90. /*background: url(img/bg.jpg) repeat-y center;*/
  91. background: #00004d;
  92. background-size: cover;
  93. opacity: 0.2;
  94. }
  95. .content-wrapper:nth-child(2n)::before {
  96. background: url(img/ams_hintergrund.png) no-repeat center fixed;
  97. background-size: 100% auto;
  98. }
  99. .content-wrapper:nth-child(3n)::before {
  100. /*background: url(img/bg2.jpg) repeat-y center;*/
  101. background: #004d00;
  102. }
  103. #tda-slider .card {
  104. max-width: 20rem;
  105. margin-right: 25px;
  106. }
  107. .card-img-top {
  108. margin: 0 auto;
  109. }
  110. #tda-slider {
  111. margin-top: 25px;
  112. }
  113. #partners .col-md-4 {
  114. display: flex;
  115. }
  116. #partners .card {
  117. width: 100%;
  118. }
  119. .tda-gallery {
  120. padding-top: 25px;
  121. }
  122. .tda-content {
  123. padding-top: 25px;
  124. max-height: 350px;
  125. overflow: auto;
  126. }
  127. .tda-content a {
  128. color: inherit;
  129. }
  130. .tag-pill {
  131. color: white;
  132. background: black;
  133. padding: 20px 20px !important;
  134. font-size: 20px;
  135. }
  136. #tdas-single h1 {
  137. margin-top: 10px;
  138. }
  139. #tdas-single span.tag {
  140. padding: 15px 5px;
  141. }
  142. .slick-slide {
  143. margin: 10px;
  144. }
  145. .navbar-light .navbar-nav .nav-link {
  146. color: rgba(0, 0, 0, 0.7);
  147. }
  148. .text-muted {
  149. color: #5f676d !important;
  150. }
  151. .relcontainer {
  152. position: relative;
  153. }
  154. .tda-hover {
  155. position: absolute;
  156. left: 0;
  157. top: 0;
  158. width: 100%;
  159. height: 100%;
  160. background: rgba(0, 0, 0, 0.3);
  161. }
  162. .tda-hover .relcontainer {
  163. width: 100%;
  164. height: 100%;
  165. }
  166. .tda-hover .relcontainer span {
  167. position: absolute;
  168. left: 50%;
  169. top: 50%;
  170. transform: translate(-50%, -50%);
  171. color: #fff;
  172. font-size: 50px;
  173. }
  174. .tda-item img {
  175. width: 100%;
  176. height: 100%;
  177. }
  178. .slick-prev:before, .slick-next:before {
  179. color: #008238;
  180. }
  181. .slick-slider .icon-next, .slick-slider .icon-prev {
  182. position: absolute;
  183. top: 50%;
  184. display: block;
  185. width: 30px;
  186. height: 30px;
  187. padding: 0;
  188. -webkit-transform: translate(0, -50%);
  189. -ms-transform: translate(0, -50%);
  190. transform: translate(0, -50%);
  191. background: #008238;
  192. padding: 5px;
  193. border-radius: 50%;
  194. }
  195. .slick-slider .icon-next > .fa, .slick-slider .icon-prev > .fa {
  196. color: #fff;
  197. font-weight: 900;
  198. }
  199. .slick-slider .icon-next > .fa:before {
  200. position: absolute;
  201. left: 10px;
  202. top: 7px;
  203. }
  204. .slick-slider .icon-prev > .fa:before {
  205. position: absolute;
  206. left: 7px;
  207. top: 7px;
  208. }
  209. .slick-slider .icon-next {
  210. right: 0;
  211. z-index: 5;
  212. }
  213. .slick-slider .icon-prev {
  214. left: 0;
  215. z-index: 5;
  216. }
  217. .b-to-top {
  218. text-align: center;
  219. }
  220. .b-to-top a {
  221. background: grey;
  222. border-radius: 50%;
  223. padding: 5px;
  224. color: white;
  225. }
  226. @media (min-width: 768px) {
  227. .slick-slider .icon-next {
  228. right: -35px;
  229. }
  230. .slick-slider .icon-prev {
  231. left: -35px;
  232. }
  233. }