theme.less 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. // Variables
  2. @primary: #28c3ab;
  3. @dark: #000;
  4. @light: #fff;
  5. // LESS
  6. body {
  7. width: 100%;
  8. height: 100%;
  9. font-family: "Lora","Helvetica Neue",Helvetica,Arial,sans-serif;
  10. color: @light;
  11. background-color: @dark;
  12. }
  13. html {
  14. width: 100%;
  15. height: 100%;
  16. }
  17. // Typhography
  18. h1,
  19. h2,
  20. h3,
  21. h4,
  22. h5,
  23. h6 {
  24. margin: 0 0 35px;
  25. text-transform: uppercase;
  26. font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif;
  27. font-weight: 700;
  28. letter-spacing: 1px;
  29. }
  30. p {
  31. margin: 0 0 25px;
  32. font-size: 18px;
  33. line-height: 1.5;
  34. }
  35. @media(min-width:767px) {
  36. p {
  37. margin: 0 0 35px;
  38. font-size: 20px;
  39. line-height: 1.6;
  40. }
  41. }
  42. a {
  43. color: @primary;
  44. -webkit-transition: all .2s ease-in-out;
  45. -moz-transition: all .2s ease-in-out;
  46. transition: all .2s ease-in-out;
  47. }
  48. a:hover,
  49. a:focus {
  50. text-decoration: none;
  51. color: darken(@primary, 20%);
  52. }
  53. .light {
  54. font-weight: 400;
  55. }
  56. // Navigation
  57. .navbar {
  58. margin-bottom: 0;
  59. border-bottom: 1px solid rgba(255,255,255,0.3);
  60. text-transform: uppercase;
  61. font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif;
  62. background-color: @dark;
  63. }
  64. .navbar-brand {
  65. font-weight: 700;
  66. }
  67. .navbar-brand:focus {
  68. outline: none;
  69. }
  70. .navbar-custom a {
  71. color: @light;
  72. }
  73. .navbar-custom .nav li a {
  74. -webkit-transition: background .3s ease-in-out;
  75. -moz-transition: background .3s ease-in-out;
  76. transition: background .3s ease-in-out;
  77. }
  78. .navbar-custom .nav li a:hover,
  79. .navbar-custom .nav li a:focus,
  80. .navbar-custom .nav li.active {
  81. outline: none;
  82. background-color: rgba(255,255,255,0.2);
  83. }
  84. .navbar-toggle {
  85. padding: 4px 6px;
  86. font-size: 16px;
  87. color: @light;
  88. }
  89. .navbar-toggle:focus,
  90. .navbar-toggle:active {
  91. outline: none;
  92. }
  93. @media(min-width:767px) {
  94. .navbar {
  95. padding: 20px 0;
  96. border-bottom: none;
  97. letter-spacing: 1px;
  98. background: transparent;
  99. -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
  100. -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
  101. transition: background .5s ease-in-out,padding .5s ease-in-out;
  102. }
  103. .top-nav-collapse {
  104. padding: 0;
  105. background-color: @dark;
  106. }
  107. .navbar-custom.top-nav-collapse {
  108. border-bottom: 1px solid rgba(255,255,255,0.3);
  109. }
  110. }
  111. // Full Page Image Intro Section
  112. .features-section, .outro, .intro {
  113. display: table;
  114. width: 100%;
  115. height: 100%;
  116. padding: 100px 0;
  117. text-align: center;
  118. color: #fff;
  119. }
  120. .intro {
  121. background: url(images/header.jpg) no-repeat bottom center scroll;
  122. background-color: #000;
  123. -webkit-background-size: cover;
  124. -moz-background-size: cover;
  125. background-size: cover;
  126. -o-background-size: cover;
  127. }
  128. .features-section {
  129. background: url('images/bgtr.svg') top right no-repeat,
  130. url('images/bgbl.svg') bottom left no-repeat,
  131. url('images/bgbl.svg') bottom left no-repeat,
  132. url('images/overlay.png'),
  133. linear-gradient(45deg, #b39c68, #a56365, #412e4c);
  134. }
  135. .outro {
  136. background: url('images/bgtr.svg') top right no-repeat,
  137. url('images/bgbl.svg') bottom left no-repeat,
  138. url('images/overlay.png'),
  139. linear-gradient(45deg, #384955, #655361, #85505f);
  140. }
  141. .intro-body {
  142. display: table-cell;
  143. vertical-align: middle;
  144. }
  145. .brand-heading {
  146. font-size: 40px;
  147. }
  148. .intro-text {
  149. font-size: 18px;
  150. }
  151. @media(min-width:767px) {
  152. .intro {
  153. height: 100%;
  154. padding: 0;
  155. }
  156. .brand-heading {
  157. font-size: 100px;
  158. }
  159. .intro-text {
  160. font-size: 25px;
  161. }
  162. }
  163. .btn-circle {
  164. width: 70px;
  165. height: 70px;
  166. margin-top: 15px;
  167. padding: 7px 16px;
  168. border: 2px solid @light;
  169. border-radius: 35px;
  170. font-size: 40px;
  171. color: @light;
  172. background: transparent;
  173. -webkit-transition: background .3s ease-in-out;
  174. -moz-transition: background .3s ease-in-out;
  175. transition: background .3s ease-in-out;
  176. }
  177. .btn-circle:hover,
  178. .btn-circle:focus {
  179. outline: none;
  180. color: @light;
  181. background: rgba(255,255,255,0.1);
  182. }
  183. .page-scroll .btn-circle i.animated {
  184. -webkit-transition-property: -webkit-transform;
  185. -webkit-transition-duration: 1s;
  186. -moz-transition-property: -moz-transform;
  187. -moz-transition-duration: 1s;
  188. }
  189. .page-scroll .btn-circle:hover i.animated {
  190. -webkit-animation-name: pulse;
  191. -moz-animation-name: pulse;
  192. -webkit-animation-duration: 1.5s;
  193. -moz-animation-duration: 1.5s;
  194. -webkit-animation-iteration-count: infinite;
  195. -moz-animation-iteration-count: infinite;
  196. -webkit-animation-timing-function: linear;
  197. -moz-animation-timing-function: linear;
  198. }
  199. @-webkit-keyframes pulse {
  200. 0 {
  201. -webkit-transform: scale(1);
  202. transform: scale(1);
  203. }
  204. 50% {
  205. -webkit-transform: scale(1.2);
  206. transform: scale(1.2);
  207. }
  208. 100% {
  209. -webkit-transform: scale(1);
  210. transform: scale(1);
  211. }
  212. }
  213. @-moz-keyframes pulse {
  214. 0 {
  215. -moz-transform: scale(1);
  216. transform: scale(1);
  217. }
  218. 50% {
  219. -moz-transform: scale(1.2);
  220. transform: scale(1.2);
  221. }
  222. 100% {
  223. -moz-transform: scale(1);
  224. transform: scale(1);
  225. }
  226. }
  227. // Content Sections
  228. .content-section {
  229. padding-top: 100px;
  230. }
  231. .donate-section {
  232. width: 100%;
  233. padding: 50px 0;
  234. color: @light;
  235. background-color: @dark;
  236. }
  237. .donate-section p.bitcoin-header {
  238. margin: 0 0 5px;
  239. }
  240. @media(min-width:767px) {
  241. .content-section {
  242. padding-top: 150px;
  243. padding-bottom: 50px;
  244. }
  245. .donate-section {
  246. padding: 100px 0;
  247. }
  248. }
  249. // Buttons
  250. .btn {
  251. text-transform: uppercase;
  252. font-family: FontAwesome;
  253. font-weight: 400;
  254. -webkit-transition: all .3s ease-in-out;
  255. -moz-transition: all .3s ease-in-out;
  256. transition: all .3s ease-in-out;
  257. }
  258. .btn-default {
  259. border: 1px solid @primary;
  260. color: @primary;
  261. background-color: transparent;
  262. }
  263. .btn-default:hover,
  264. .btn-default:focus {
  265. border: 1px solid @primary;
  266. outline: none;
  267. color: @dark;
  268. background-color: @primary;
  269. }
  270. .btn-huge {
  271. padding: 25px;
  272. font-size: 26px;
  273. }
  274. .banner-social-buttons {
  275. position: absolute;
  276. bottom: 4em;
  277. left: 0;
  278. }
  279. @media(max-width:1199px) {
  280. ul.banner-social-buttons {
  281. margin-top: 15px;
  282. }
  283. }
  284. @media(max-width:767px) {
  285. ul.banner-social-buttons > li {
  286. display: block;
  287. margin-bottom: 20px;
  288. padding: 0;
  289. }
  290. ul.banner-social-buttons > li:last-child {
  291. margin-bottom: 0;
  292. }
  293. }
  294. // Highlight Color Customization
  295. ::-moz-selection {
  296. text-shadow: none;
  297. background: #fcfcfc;
  298. background: rgba(255,255,255,0.2);
  299. }
  300. ::selection {
  301. text-shadow: none;
  302. background: #fcfcfc;
  303. background: rgba(255,255,255,0.2);
  304. }
  305. img::selection {
  306. background: transparent;
  307. }
  308. img::-moz-selection {
  309. background: transparent;
  310. }
  311. body {
  312. webkit-tap-highlight-color: rgba(255,255,255,0.2);
  313. }
  314. ul.contact,
  315. ul.integration,
  316. ul.screencasts,
  317. ul.features {
  318. text-align: left;
  319. font-size: 19px;
  320. }
  321. .feature-icon {
  322. display: inline-block;
  323. position: relative;
  324. padding-bottom: 5em;
  325. margin-bottom: 2.75em;
  326. cursor: default;
  327. color: #fff;
  328. }
  329. .feature-icon .fa {
  330. display: inline-block;
  331. width: 2em;
  332. height: 2em;
  333. font-size: 4em;
  334. border-radius: 100%;
  335. box-shadow: inset 0 0 0 1px white;
  336. color: white;
  337. line-height: 2.1em;
  338. }
  339. .feature-icon:before {
  340. content: '';
  341. background: white;
  342. position: absolute;
  343. bottom: 0;
  344. left: 50%;
  345. margin-left: -0.325em;
  346. width: 0.65em;
  347. height: 0.65em;
  348. display: block;
  349. border-radius: 100%;
  350. }
  351. .feature-icon:after {
  352. content: '';
  353. position: absolute;
  354. left: 50%;
  355. bottom: 0.65em;
  356. width: 1px;
  357. height: 4.35em;
  358. background: white;
  359. margin-left: -0.5px;
  360. }