_site-base.scss 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. $font-family-serif: 'Display Playfair';
  2. body {
  3. line-height: 1.7;
  4. color: lighten($black, 30%);
  5. font-weight: 300;
  6. font-size: $font-size-base;
  7. }
  8. ::-moz-selection {
  9. background: $black;
  10. color: $white;
  11. }
  12. ::selection {
  13. background: $black;
  14. color: $white;
  15. }
  16. a {
  17. transition: .3s all ease;
  18. &:hover {
  19. text-decoration: none;
  20. }
  21. }
  22. h1, h2, h3, h4, h5,
  23. .h1, .h2, .h3, .h4, .h5 {
  24. font-family: $font-family-sans-serif;
  25. }
  26. .border-2 {
  27. border-width: 2px;
  28. }
  29. .text-black {
  30. color: $black!important;
  31. }
  32. .bg-black {
  33. background: $black!important;
  34. }
  35. .color-black-opacity-5 {
  36. color: rgba($black, .5);
  37. }
  38. .color-white-opacity-5 {
  39. color: rgba($white, .5);
  40. }
  41. .site-wrap {
  42. &:before {
  43. transition: .3s all ease-in-out;
  44. background: rgba(0,0,0,.6);
  45. content: "";
  46. position: absolute;
  47. z-index: 2000;
  48. top: 0;
  49. left: 0;
  50. right: 0;
  51. bottom: 0;
  52. opacity: 0;
  53. visibility: hidden;
  54. }
  55. .offcanvas-menu & {
  56. position: absolute;
  57. height: 100%;
  58. width: 100%;
  59. z-index: 2;
  60. overflow: hidden;
  61. &:before {
  62. opacity: 1;
  63. visibility: visible;
  64. }
  65. }
  66. }
  67. .btn {
  68. text-transform: uppercase;
  69. letter-spacing: .2em;
  70. border-radius: 0;
  71. &:hover, &:active, &:focus {
  72. outline: none;
  73. box-shadow: none!important;
  74. }
  75. &.btn-black {
  76. color: $white;
  77. background-color: $black;
  78. &:hover {
  79. color: $black;
  80. background-color: $white;
  81. }
  82. }
  83. &.btn-primary {
  84. border: 2px solid transparent;
  85. &:hover {
  86. border: 2px solid $black;
  87. background: none!important;
  88. color: $black!important;
  89. }
  90. }
  91. }
  92. .line-height-1 {
  93. line-height: 1!important;
  94. }
  95. .bg-black {
  96. background: $black;
  97. }
  98. .form-control {
  99. height: 43px;
  100. border-radius: 0;
  101. &:active, &:focus {
  102. border-color: $primary;
  103. }
  104. &:hover, &:active, &:focus {
  105. box-shadow: none!important;
  106. }
  107. }
  108. .site-section {
  109. padding: 2.5em 0;
  110. @include media-breakpoint-up(md) {
  111. padding: 5em 0;
  112. }
  113. &.site-section-sm {
  114. padding: 4em 0;
  115. }
  116. }
  117. .site-section-heading {
  118. position: relative;
  119. font-size: 2.5rem;
  120. @include media-breakpoint-up(md) {
  121. font-size: $font-size-base + 3rem;
  122. }
  123. &:after {
  124. content: "";
  125. left: 0%;
  126. bottom: 0;
  127. position: absolute;
  128. width: 100px;
  129. height: 1px;
  130. background: $primary;
  131. }
  132. &.text-center {
  133. &:after {
  134. content: "";
  135. transform: translateX(-50%);
  136. content: "";
  137. left: 50%;
  138. bottom: 0;
  139. position: absolute;
  140. width: 100px;
  141. height: 1px;
  142. background: $primary;
  143. }
  144. }
  145. }
  146. .border-top {
  147. border-top: 1px solid $gray-4!important;
  148. }
  149. .site-footer {
  150. padding: 4em 0;
  151. background: lighten($black, 20%);
  152. @include media-breakpoint-up(md) {
  153. padding: 8em 0;
  154. }
  155. .border-top {
  156. border-top: 1px solid rgba(255,255,255,.1)!important;
  157. }
  158. p {
  159. color: lighten($black, 45%);
  160. }
  161. h2,h3,h4,h5 {
  162. color: $white;
  163. }
  164. a {
  165. color: lighten($black, 60%);
  166. &:hover {
  167. color: lighten($black, 100%);
  168. }
  169. }
  170. ul {
  171. li {
  172. margin-bottom: 10px;
  173. }
  174. }
  175. .footer-heading {
  176. font-size: 16px;
  177. color: $white;
  178. }
  179. }
  180. .bg-text-line {
  181. display: inline;
  182. background: $black;
  183. box-shadow: 20px 0 0 $black, -20px 0 0 $black;
  184. }
  185. .text-white-opacity-05 {
  186. color: rgba($white, .5);
  187. }
  188. .text-black-opacity-05 {
  189. color: rgba($black, .5);
  190. }
  191. .hover-bg-enlarge {
  192. overflow: hidden;
  193. position: relative;
  194. @include media-breakpoint-down(md) {
  195. height: auto!important;
  196. }
  197. > div {
  198. transform: scale(1.0);
  199. transition: .8s all ease-in-out;
  200. }
  201. &:hover, &:focus, &:active {
  202. > div {
  203. transform: scale(1.2);
  204. }
  205. }
  206. .bg-image-md-height {
  207. @include media-breakpoint-down(md) {
  208. height: 300px!important;
  209. }
  210. }
  211. }
  212. .bg-image {
  213. background-size: cover;
  214. background-position: center center;
  215. background-repeat: no-repeat;
  216. background-attachment: fixed;
  217. &.overlay {
  218. position: relative;
  219. &:after {
  220. position: absolute;
  221. content: "";
  222. top: 0;
  223. left: 0;
  224. right: 0;
  225. bottom: 0;
  226. z-index: 0;
  227. width: 100%;
  228. background: rgba(0,0,0,.7);
  229. }
  230. }
  231. > .container {
  232. position: relative;
  233. z-index: 1;
  234. }
  235. }
  236. .img-md-fluid {
  237. @include media-breakpoint-down(md) {
  238. max-width: 100%;
  239. }
  240. }
  241. .display-1, .display-3 {
  242. @include media-breakpoint-down(md) {
  243. font-size: 3rem;
  244. }
  245. }
  246. .play-single-big {
  247. width: 90px;
  248. height: 90px;
  249. display: inline-block;
  250. border: 2px solid $white;
  251. color: $white!important;
  252. border-radius: 50%;
  253. position: relative;
  254. transition: .3s all ease-in-out;
  255. > span {
  256. font-size: 50px;
  257. position: absolute;
  258. top: 50%;
  259. left: 50%;
  260. transform: translate(-40%, -50%);
  261. }
  262. &:hover {
  263. width: 120px;
  264. height: 120px;
  265. }
  266. }
  267. .overlap-to-top {
  268. margin-top: -150px;
  269. }
  270. .ul-check {
  271. margin-bottom: 50px;
  272. li {
  273. position: relative;
  274. padding-left: 35px;
  275. margin-bottom: 15px;
  276. line-height: 1.5;
  277. &:before {
  278. left: 0;
  279. font-size: 20px;
  280. top: -.3rem;
  281. font-family: "icomoon";
  282. content: "\e5ca";
  283. position: absolute;
  284. }
  285. }
  286. &.white {
  287. li {
  288. &:before {
  289. color: $white;
  290. }
  291. }
  292. }
  293. &.success {
  294. li {
  295. &:before {
  296. color: $success;
  297. }
  298. }
  299. }
  300. &.primary {
  301. li {
  302. &:before {
  303. color: $primary;
  304. }
  305. }
  306. }
  307. }