theme.css 7.2 KB

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