about.css 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. .social-link {
  2. list-style: none;
  3. padding: 0.2rem;
  4. }
  5. .social-link a {
  6. font-size: 1.5rem;
  7. color: #3c4858;
  8. padding: 0.5rem;
  9. }
  10. .social-link a:hover {
  11. color: #248aaa;
  12. transition: all 0.3s ease-in;
  13. }
  14. .circular-progress {
  15. width: 150px;
  16. height: 150px;
  17. line-height: 150px;
  18. background: none;
  19. margin: 0 auto;
  20. box-shadow: none;
  21. position: relative;
  22. }
  23. .circular-progress:after {
  24. content: "";
  25. width: 100%;
  26. height: 100%;
  27. border-radius: 50%;
  28. border: 12px solid #f9fafc;
  29. position: absolute;
  30. top: 0;
  31. left: 0;
  32. }
  33. .circular-progress > span {
  34. width: 50%;
  35. height: 100%;
  36. overflow: hidden;
  37. position: absolute;
  38. top: 0;
  39. z-index: 1;
  40. }
  41. .circular-progress .circular-progress-left {
  42. left: 0;
  43. }
  44. .circular-progress .circular-progress-bar {
  45. width: 100%;
  46. height: 100%;
  47. background: none;
  48. border-width: 12px;
  49. border-style: solid;
  50. position: absolute;
  51. top: 0;
  52. }
  53. .circular-progress .circular-progress-left .circular-progress-bar {
  54. left: 100%;
  55. border-top-right-radius: 80px;
  56. border-bottom-right-radius: 80px;
  57. border-left: 0;
  58. transform-origin: center left;
  59. }
  60. .circular-progress .circular-progress-right {
  61. right: 0;
  62. }
  63. .circular-progress .circular-progress-right .circular-progress-bar {
  64. left: -100%;
  65. border-top-left-radius: 80px;
  66. border-bottom-left-radius: 80px;
  67. border-right: 0;
  68. transform-origin: center right;
  69. -webkit-animation: circular-loading-1 1.8s linear forwards;
  70. animation: circular-loading-1 1.8s linear forwards;
  71. }
  72. .circular-progress .circular-progress-value {
  73. width: 90%;
  74. height: 90%;
  75. padding: 1rem;
  76. border-radius: 50%;
  77. background: #3c4858;
  78. font-size: 1rem;
  79. color: #f9fafc;
  80. line-height: initial;
  81. text-align: center;
  82. position: absolute;
  83. top: 5%;
  84. left: 5%;
  85. display: flex;
  86. justify-content: center;
  87. align-items: center;
  88. }
  89. .circular-progress.blue .circular-progress-bar {
  90. border-color: #048dff;
  91. }
  92. .circular-progress.yellow .circular-progress-bar {
  93. border-color: #eebb4d;
  94. }
  95. .circular-progress.pink .circular-progress-bar {
  96. border-color: #ed63d2;
  97. }
  98. .circular-progress.green .circular-progress-bar {
  99. border-color: #2dca73;
  100. }
  101. .circular-progress.sky .circular-progress-bar {
  102. border-color: #00c9e3;
  103. }
  104. .circular-progress.orange .circular-progress-bar {
  105. border-color: #ff7c7c;
  106. }
  107. .circular-progress-percentage-50 {
  108. -webkit-animation: circular-loading-50 0s linear forwards 1.8s;
  109. animation: circular-loading-50 0s linear forwards 1.8s;
  110. }
  111. .circular-progress-percentage-55 {
  112. -webkit-animation: circular-loading-55 0.18s linear forwards 1.8s;
  113. animation: circular-loading-55 0.18s linear forwards 1.8s;
  114. }
  115. .circular-progress-percentage-60 {
  116. -webkit-animation: circular-loading-60 0.36s linear forwards 1.8s;
  117. animation: circular-loading-60 0.36s linear forwards 1.8s;
  118. }
  119. .circular-progress-percentage-65 {
  120. -webkit-animation: circular-loading-65 0.54s linear forwards 1.8s;
  121. animation: circular-loading-65 0.54s linear forwards 1.8s;
  122. }
  123. .circular-progress-percentage-70 {
  124. -webkit-animation: circular-loading-70 0.72s linear forwards 1.8s;
  125. animation: circular-loading-70 0.72s linear forwards 1.8s;
  126. }
  127. .circular-progress-percentage-75 {
  128. -webkit-animation: circular-loading-75 0.9s linear forwards 1.8s;
  129. animation: circular-loading-75 0.9s linear forwards 1.8s;
  130. }
  131. .circular-progress-percentage-80 {
  132. -webkit-animation: circular-loading-80 1.08s linear forwards 1.8s;
  133. animation: circular-loading-80 1.08s linear forwards 1.8s;
  134. }
  135. .circular-progress-percentage-85 {
  136. -webkit-animation: circular-loading-85 1.26s linear forwards 1.8s;
  137. animation: circular-loading-85 1.26s linear forwards 1.8s;
  138. }
  139. .circular-progress-percentage-90 {
  140. -webkit-animation: circular-loading-90 1.44s linear forwards 1.8s;
  141. animation: circular-loading-90 1.44s linear forwards 1.8s;
  142. }
  143. .circular-progress-percentage-95 {
  144. -webkit-animation: circular-loading-95 1.62s linear forwards 1.8s;
  145. animation: circular-loading-95 1.62s linear forwards 1.8s;
  146. }
  147. .circular-progress-percentage-100 {
  148. -webkit-animation: circular-loading-100 1.8s linear forwards 1.8s;
  149. animation: circular-loading-100 1.8s linear forwards 1.8s;
  150. }
  151. @-webkit-keyframes circular-loading-50 {
  152. 0% {
  153. transform: rotate(0deg);
  154. }
  155. 100% {
  156. transform: rotate(0deg);
  157. }
  158. }
  159. @keyframes circular-loading-50 {
  160. 0% {
  161. transform: rotate(0deg);
  162. }
  163. 100% {
  164. transform: rotate(0deg);
  165. }
  166. }
  167. @-webkit-keyframes circular-loading-55 {
  168. 0% {
  169. transform: rotate(0deg);
  170. }
  171. 100% {
  172. transform: rotate(18deg);
  173. }
  174. }
  175. @keyframes circular-loading-55 {
  176. 0% {
  177. transform: rotate(0deg);
  178. }
  179. 100% {
  180. transform: rotate(18deg);
  181. }
  182. }
  183. @-webkit-keyframes circular-loading-60 {
  184. 0% {
  185. transform: rotate(0deg);
  186. }
  187. 100% {
  188. transform: rotate(36deg);
  189. }
  190. }
  191. @keyframes circular-loading-60 {
  192. 0% {
  193. transform: rotate(0deg);
  194. }
  195. 100% {
  196. transform: rotate(36deg);
  197. }
  198. }
  199. @-webkit-keyframes circular-loading-65 {
  200. 0% {
  201. transform: rotate(0deg);
  202. }
  203. 100% {
  204. transform: rotate(54deg);
  205. }
  206. }
  207. @keyframes circular-loading-65 {
  208. 0% {
  209. transform: rotate(0deg);
  210. }
  211. 100% {
  212. transform: rotate(54deg);
  213. }
  214. }
  215. @-webkit-keyframes circular-loading-70 {
  216. 0% {
  217. transform: rotate(0deg);
  218. }
  219. 100% {
  220. transform: rotate(72deg);
  221. }
  222. }
  223. @keyframes circular-loading-70 {
  224. 0% {
  225. transform: rotate(0deg);
  226. }
  227. 100% {
  228. transform: rotate(72deg);
  229. }
  230. }
  231. @-webkit-keyframes circular-loading-75 {
  232. 0% {
  233. transform: rotate(0deg);
  234. }
  235. 100% {
  236. transform: rotate(90deg);
  237. }
  238. }
  239. @keyframes circular-loading-75 {
  240. 0% {
  241. transform: rotate(0deg);
  242. }
  243. 100% {
  244. transform: rotate(90deg);
  245. }
  246. }
  247. @-webkit-keyframes circular-loading-80 {
  248. 0% {
  249. transform: rotate(0deg);
  250. }
  251. 100% {
  252. transform: rotate(108deg);
  253. }
  254. }
  255. @keyframes circular-loading-80 {
  256. 0% {
  257. transform: rotate(0deg);
  258. }
  259. 100% {
  260. transform: rotate(108deg);
  261. }
  262. }
  263. @-webkit-keyframes circular-loading-85 {
  264. 0% {
  265. transform: rotate(0deg);
  266. }
  267. 100% {
  268. transform: rotate(126deg);
  269. }
  270. }
  271. @keyframes circular-loading-85 {
  272. 0% {
  273. transform: rotate(0deg);
  274. }
  275. 100% {
  276. transform: rotate(126deg);
  277. }
  278. }
  279. @-webkit-keyframes circular-loading-90 {
  280. 0% {
  281. transform: rotate(0deg);
  282. }
  283. 100% {
  284. transform: rotate(144deg);
  285. }
  286. }
  287. @keyframes circular-loading-90 {
  288. 0% {
  289. transform: rotate(0deg);
  290. }
  291. 100% {
  292. transform: rotate(144deg);
  293. }
  294. }
  295. @-webkit-keyframes circular-loading-95 {
  296. 0% {
  297. transform: rotate(0deg);
  298. }
  299. 100% {
  300. transform: rotate(162deg);
  301. }
  302. }
  303. @keyframes circular-loading-95 {
  304. 0% {
  305. transform: rotate(0deg);
  306. }
  307. 100% {
  308. transform: rotate(162deg);
  309. }
  310. }
  311. @-webkit-keyframes circular-loading-100 {
  312. 0% {
  313. transform: rotate(0deg);
  314. }
  315. 100% {
  316. transform: rotate(180deg);
  317. }
  318. }
  319. @keyframes circular-loading-100 {
  320. 0% {
  321. transform: rotate(0deg);
  322. }
  323. 100% {
  324. transform: rotate(180deg);
  325. }
  326. }
  327. @-webkit-keyframes circular-loading-1 {
  328. 0% {
  329. transform: rotate(0deg);
  330. }
  331. 100% {
  332. transform: rotate(180deg);
  333. }
  334. }
  335. @keyframes circular-loading-1 {
  336. 0% {
  337. transform: rotate(0deg);
  338. }
  339. 100% {
  340. transform: rotate(180deg);
  341. }
  342. }
  343. @-webkit-keyframes circular-loading-2 {
  344. 0% {
  345. transform: rotate(0deg);
  346. }
  347. 100% {
  348. transform: rotate(144deg);
  349. }
  350. }
  351. @keyframes circular-loading-2 {
  352. 0% {
  353. transform: rotate(0deg);
  354. }
  355. 100% {
  356. transform: rotate(144deg);
  357. }
  358. }
  359. @-webkit-keyframes circular-loading-3 {
  360. 0% {
  361. transform: rotate(0deg);
  362. }
  363. 100% {
  364. transform: rotate(90deg);
  365. }
  366. }
  367. @keyframes circular-loading-3 {
  368. 0% {
  369. transform: rotate(0deg);
  370. }
  371. 100% {
  372. transform: rotate(90deg);
  373. }
  374. }
  375. @-webkit-keyframes circular-loading-4 {
  376. 0% {
  377. transform: rotate(0deg);
  378. }
  379. 100% {
  380. transform: rotate(36deg);
  381. }
  382. }
  383. @keyframes circular-loading-4 {
  384. 0% {
  385. transform: rotate(0deg);
  386. }
  387. 100% {
  388. transform: rotate(36deg);
  389. }
  390. }
  391. @-webkit-keyframes circular-loading-5 {
  392. 0% {
  393. transform: rotate(0deg);
  394. }
  395. 100% {
  396. transform: rotate(126deg);
  397. }
  398. }
  399. @keyframes circular-loading-5 {
  400. 0% {
  401. transform: rotate(0deg);
  402. }
  403. 100% {
  404. transform: rotate(126deg);
  405. }
  406. }
  407. @media only screen and (max-width: 990px) {
  408. .circular-progress {
  409. margin-bottom: 20px;
  410. }
  411. }
  412. /* ============= Device specific fixes ======= */
  413. /* Large screens such as TV */
  414. @media only screen and (min-width: 1824px) {
  415. }
  416. /* Extra large devices (large desktops, 1200px and up) */
  417. @media (max-width: 1400px) {
  418. }
  419. @media (max-width: 1200px) {
  420. }
  421. /* IPad Pro */
  422. @media (max-width: 1024px) {
  423. }
  424. /* Large devices (desktops, 992px and up) */
  425. @media (max-width: 992px) {
  426. }
  427. /* Medium devices (tablets, 768px and up) */
  428. @media only screen and (max-width: 768px) {
  429. .about-section.container {
  430. max-width: 100%;
  431. }
  432. .circular-progress {
  433. width: 135px;
  434. height: 135px;
  435. }
  436. }
  437. /* Small devices (landscape phones, 576px and up) */
  438. @media only screen and (max-width: 576px) {
  439. .circular-progress {
  440. width: 150px;
  441. height: 150px;
  442. }
  443. .circular-progress .circular-progress-value {
  444. font-size: 1rem;
  445. }
  446. }
  447. /* iPhoneX, iPhone 6,7,8 */
  448. @media only screen and (max-width: 375px) {
  449. }
  450. /* Galaxy S5, Moto G4 */
  451. @media only screen and (max-width: 360px) {
  452. }
  453. /* iPhone 5 or before */
  454. @media only screen and (max-width: 320px) {
  455. .col-6 {
  456. flex: auto;
  457. max-width: 100%;
  458. }
  459. .social-link {
  460. flex-wrap: wrap;
  461. }
  462. }