about.css 9.2 KB

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