You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

326 lines
4.7 KiB

  1. body {
  2. font-family: 'Open Sans', sans-serif;
  3. font-size: 15px;
  4. color: @text-light;
  5. text-rendering: optimizeLegibility !important;
  6. line-height: 1.5em;
  7. -moz-osx-font-smoothing: grayscale;
  8. -webkit-font-smoothing: antialiased;
  9. }
  10. .navbar-brand {
  11. width: 155px;
  12. }
  13. .button {
  14. display: inline-block;
  15. border-radius: 4px;
  16. padding: 7px 12px 9px;
  17. line-height: 1;
  18. text-decoration: none;
  19. }
  20. .x-large.button {
  21. font-size: 20px;
  22. padding: 16px 40px;
  23. border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  24. }
  25. .large.button {
  26. font-size: 1.33em;
  27. padding: 12px 24px 10px;
  28. border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  29. }
  30. .show {
  31. display: block !important;
  32. }
  33. .cl-white {
  34. color: #fff;
  35. }
  36. .cl-blue {
  37. color: #5E64FF;
  38. }
  39. .fnt-34 {
  40. font-size: 34px;
  41. }
  42. .navbar-icon {
  43. width: 24px;
  44. margin-right: 7px;
  45. margin-top: -3px;
  46. }
  47. .bg-blue {
  48. background : #5f5fce;
  49. }
  50. .bg-white {
  51. background: #fff;
  52. }
  53. .bg-gray {
  54. background: #f9f9f9;
  55. }
  56. .bg-orange {
  57. background-color: #f39c12;
  58. }
  59. .bg-blue1 {
  60. background-color: #3498db;
  61. }
  62. .bg-green {
  63. background-color: #1abc9c;
  64. }
  65. .bg-red {
  66. background-color: #c0392b;
  67. }
  68. .bg-crm {
  69. background-color: #EF4DB6;
  70. }
  71. .bg-tools {
  72. background-color: #FFF5A7;
  73. }
  74. .bg-hr {
  75. background-color: #2ecc71;
  76. }
  77. .bg-projects {
  78. background-color: #8e44ad;
  79. }
  80. .bg-support {
  81. background-color: #2c3e50;
  82. }
  83. .bg-profit {
  84. background-color: #3498db;
  85. }
  86. .bg-website {
  87. background-color: #16a085;
  88. }
  89. .bg-maintenance {
  90. background-color: #FF888B;
  91. }
  92. .bg-explore {
  93. background-color: #7578f6;
  94. }
  95. .padd-0 {
  96. padding: 0;
  97. }
  98. .white-btn {
  99. background: #fff;
  100. color: #7574ff;
  101. border: 0px;
  102. border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  103. font-size: 1em;
  104. }
  105. .white-btn:hover {
  106. text-decoration: none;
  107. background: #7574ff;
  108. color: #fff;
  109. border-bottom: 3px solid rgba(117, 116, 255, 0.2);
  110. }
  111. .blue-btn {
  112. background: #7574ff;
  113. color: #fff;
  114. border: 0px;
  115. border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  116. font-size: 1em;
  117. }
  118. .blue-btn:hover {
  119. text-decoration: none;
  120. background: #7574ff;
  121. color: #fff;
  122. border-bottom: 3px solid rgba(117, 116, 255, 0.2);
  123. }
  124. .mar-t-0 {
  125. margin-top: 0;
  126. }
  127. .mar-t-20 {
  128. margin-top: 20px;
  129. }
  130. .mar-t-50 {
  131. margin-top: 50px;
  132. }
  133. .mar-b-50 {
  134. margin-bottom: 50px;
  135. }
  136. .h2 {
  137. font-size: 26px;
  138. color: #36414c;
  139. line-height: 30px;
  140. margin-bottom: 35px;
  141. }
  142. .p {
  143. font-size: 18px;
  144. color: #6c7680;
  145. line-height: 30px;
  146. margin-bottom: 35px;
  147. }
  148. .cl-light-gray {
  149. color: #b8c2cc;
  150. }
  151. .section-block {
  152. padding: 75px 0;
  153. }
  154. .testimonial-img {
  155. margin: auto;
  156. max-width: 150px;
  157. }
  158. .testimonial_name {
  159. color: #36414c;
  160. font-size: 18px;
  161. margin-top: 40px;
  162. }
  163. .case-wrapper {
  164. position: relative;
  165. margin: 0px;
  166. float: left;
  167. width: 138px;
  168. height: 140px;
  169. }
  170. .app-icon {
  171. padding: 17px 20px 17px 20px;
  172. display: inline-block;
  173. margin: auto;
  174. text-align: center;
  175. border-radius: 16px;
  176. box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
  177. }
  178. .case-label {
  179. font-size: 12px;
  180. font-weight: bold;
  181. letter-spacing: 0.4px;
  182. color: #36414c;
  183. text-align: center;
  184. margin-top: 10px;
  185. transition: 0.2s;
  186. -webkit-transition: 0.2s;
  187. }
  188. .ellipsis {
  189. white-space: nowrap;
  190. overflow: hidden;
  191. text-overflow: ellipsis;
  192. max-width: 100%;
  193. vertical-align: middle;
  194. }
  195. #icon-grid {
  196. max-width: 970px;
  197. margin: auto;
  198. }
  199. #icon-grid svg {
  200. fill: #fff;
  201. }
  202. .footer-list {
  203. text-align: center;
  204. display: inline-block;
  205. width: 100%;
  206. margin-top: 30px;
  207. margin-bottom: 10px;
  208. }
  209. footer ul, footer ul li {
  210. margin: 0;
  211. padding: 0;
  212. list-style-type: none;
  213. text-align: center;
  214. }
  215. .footer-list li {
  216. margin: 0px 15px;
  217. display: inline-block;
  218. }
  219. footer li a {
  220. text-decoration: none;
  221. color: #36414c;
  222. font-size: 16px;
  223. }
  224. .copyright {
  225. font-size: 14px;
  226. text-align: center;
  227. padding-bottom: 50px;
  228. }
  229. .copyright p {
  230. padding-bottom: 0px;
  231. color: #B8C2CC;
  232. }
  233. .underline {
  234. color: inherit;
  235. text-decoration: underline;
  236. }
  237. .clearfix {
  238. clear: both;
  239. }
  240. @media screen and (max-width: 767px)
  241. {
  242. .heading {
  243. font-size: 24px;
  244. }
  245. .octicon-three-bars {
  246. font-size: 26px;
  247. }
  248. .x-large.button {
  249. font-size: 18px;
  250. padding: 12px 31px;
  251. border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  252. }
  253. .section-block {
  254. padding: 25px 0;
  255. }
  256. .h2 {
  257. font-size: 20px;
  258. text-align: center;
  259. }
  260. .p {
  261. font-size: 16px;
  262. text-align: center;
  263. }
  264. .toggle-sidebar {
  265. margin-right: 10px;
  266. margin-top: 10px;
  267. }
  268. .large.button {
  269. font-size: 16px;
  270. }
  271. .case-wrapper {
  272. width: 110px;
  273. }
  274. footer {
  275. padding: 0 15px;
  276. }
  277. .footer-list li {
  278. margin: 0px 15px 20px;
  279. display: block;
  280. float: left;
  281. width: 23%;
  282. text-align: left;
  283. }
  284. .pricing-section {
  285. padding-left: 0;
  286. padding-right: 0;
  287. }
  288. hr.mar-t-50 {
  289. margin-top: 0;
  290. }
  291. }
  292. @media screen and (max-width: 480px)
  293. {
  294. .x-large.button {
  295. display: block;
  296. }
  297. }