about.css 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  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. animation: circular-loading-1 1.8s linear forwards;
  70. }
  71. .circular-progress .circular-progress-value {
  72. width: 90%;
  73. height: 90%;
  74. padding: 1rem;
  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. animation: circular-loading-50 0s linear forwards 1.8s;
  108. }
  109. .circular-progress-percentage-55 {
  110. animation: circular-loading-55 0.18s linear forwards 1.8s;
  111. }
  112. .circular-progress-percentage-60 {
  113. animation: circular-loading-60 0.36s linear forwards 1.8s;
  114. }
  115. .circular-progress-percentage-65 {
  116. animation: circular-loading-65 0.54s linear forwards 1.8s;
  117. }
  118. .circular-progress-percentage-70 {
  119. animation: circular-loading-70 0.72s linear forwards 1.8s;
  120. }
  121. .circular-progress-percentage-75 {
  122. animation: circular-loading-75 0.9s linear forwards 1.8s;
  123. }
  124. .circular-progress-percentage-80 {
  125. animation: circular-loading-80 1.08s linear forwards 1.8s;
  126. }
  127. .circular-progress-percentage-85 {
  128. animation: circular-loading-85 1.26s linear forwards 1.8s;
  129. }
  130. .circular-progress-percentage-90 {
  131. animation: circular-loading-90 1.44s linear forwards 1.8s;
  132. }
  133. .circular-progress-percentage-95 {
  134. animation: circular-loading-95 1.62s linear forwards 1.8s;
  135. }
  136. .circular-progress-percentage-100 {
  137. animation: circular-loading-100 1.8s linear forwards 1.8s;
  138. }
  139. @keyframes circular-loading-50 {
  140. 0% {
  141. transform: rotate(0deg);
  142. }
  143. 100% {
  144. transform: rotate(0deg);
  145. }
  146. }
  147. @keyframes circular-loading-55 {
  148. 0% {
  149. transform: rotate(0deg);
  150. }
  151. 100% {
  152. transform: rotate(18deg);
  153. }
  154. }
  155. @keyframes circular-loading-60 {
  156. 0% {
  157. transform: rotate(0deg);
  158. }
  159. 100% {
  160. transform: rotate(36deg);
  161. }
  162. }
  163. @keyframes circular-loading-65 {
  164. 0% {
  165. transform: rotate(0deg);
  166. }
  167. 100% {
  168. transform: rotate(54deg);
  169. }
  170. }
  171. @keyframes circular-loading-70 {
  172. 0% {
  173. transform: rotate(0deg);
  174. }
  175. 100% {
  176. transform: rotate(72deg);
  177. }
  178. }
  179. @keyframes circular-loading-75 {
  180. 0% {
  181. transform: rotate(0deg);
  182. }
  183. 100% {
  184. transform: rotate(90deg);
  185. }
  186. }
  187. @keyframes circular-loading-80 {
  188. 0% {
  189. transform: rotate(0deg);
  190. }
  191. 100% {
  192. transform: rotate(108deg);
  193. }
  194. }
  195. @keyframes circular-loading-85 {
  196. 0% {
  197. transform: rotate(0deg);
  198. }
  199. 100% {
  200. transform: rotate(126deg);
  201. }
  202. }
  203. @keyframes circular-loading-90 {
  204. 0% {
  205. transform: rotate(0deg);
  206. }
  207. 100% {
  208. transform: rotate(144deg);
  209. }
  210. }
  211. @keyframes circular-loading-95 {
  212. 0% {
  213. transform: rotate(0deg);
  214. }
  215. 100% {
  216. transform: rotate(162deg);
  217. }
  218. }
  219. @keyframes circular-loading-100 {
  220. 0% {
  221. transform: rotate(0deg);
  222. }
  223. 100% {
  224. transform: rotate(180deg);
  225. }
  226. }
  227. @keyframes circular-loading-1 {
  228. 0% {
  229. transform: rotate(0deg);
  230. }
  231. 100% {
  232. transform: rotate(180deg);
  233. }
  234. }
  235. @keyframes circular-loading-2 {
  236. 0% {
  237. transform: rotate(0deg);
  238. }
  239. 100% {
  240. transform: rotate(144deg);
  241. }
  242. }
  243. @keyframes circular-loading-3 {
  244. 0% {
  245. transform: rotate(0deg);
  246. }
  247. 100% {
  248. transform: rotate(90deg);
  249. }
  250. }
  251. @keyframes circular-loading-4 {
  252. 0% {
  253. transform: rotate(0deg);
  254. }
  255. 100% {
  256. transform: rotate(36deg);
  257. }
  258. }
  259. @keyframes circular-loading-5 {
  260. 0% {
  261. transform: rotate(0deg);
  262. }
  263. 100% {
  264. transform: rotate(126deg);
  265. }
  266. }
  267. @media only screen and (max-width: 990px) {
  268. .circular-progress {
  269. margin-bottom: 20px;
  270. }
  271. }
  272. /* ============= Device specific fixes ======= */
  273. /* Large screens such as TV */
  274. @media only screen and (min-width: 1824px) {
  275. }
  276. /* Extra large devices (large desktops, 1200px and up) */
  277. @media (max-width: 1400px) {
  278. }
  279. @media (max-width: 1200px) {
  280. }
  281. /* IPad Pro */
  282. @media (max-width: 1024px) {
  283. }
  284. /* Large devices (desktops, 992px and up) */
  285. @media (max-width: 992px) {
  286. }
  287. /* Medium devices (tablets, 768px and up) */
  288. @media only screen and (max-width: 768px) {
  289. .about-section.container {
  290. max-width: 100%;
  291. }
  292. .circular-progress {
  293. width: 135px;
  294. height: 135px;
  295. }
  296. }
  297. /* Small devices (landscape phones, 576px and up) */
  298. @media only screen and (max-width: 576px) {
  299. .circular-progress {
  300. width: 150px;
  301. height: 150px;
  302. }
  303. .circular-progress .circular-progress-value {
  304. font-size: 1rem;
  305. }
  306. }
  307. /* iPhoneX, iPhone 6,7,8 */
  308. @media only screen and (max-width: 375px) {
  309. }
  310. /* Galaxy S5, Moto G4 */
  311. @media only screen and (max-width: 360px) {
  312. }
  313. /* iPhone 5 or before */
  314. @media only screen and (max-width: 320px) {
  315. .col-6 {
  316. flex: auto;
  317. max-width: 100%;
  318. }
  319. .social-link {
  320. flex-wrap: wrap;
  321. }
  322. }