about.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  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. border-radius: 50%;
  75. background: #3c4858;
  76. font-size: 1rem;
  77. color: #f9fafc;
  78. line-height: 135px;
  79. text-align: center;
  80. position: absolute;
  81. top: 5%;
  82. left: 5%;
  83. }
  84. .circular-progress.blue .circular-progress-bar {
  85. border-color: #048dff;
  86. }
  87. .circular-progress.yellow .circular-progress-bar {
  88. border-color: #eebb4d;
  89. }
  90. .circular-progress.pink .circular-progress-bar {
  91. border-color: #ed63d2;
  92. }
  93. .circular-progress.green .circular-progress-bar {
  94. border-color: #2dca73;
  95. }
  96. .circular-progress.sky .circular-progress-bar {
  97. border-color: #00c9e3;
  98. }
  99. .circular-progress.orange .circular-progress-bar {
  100. border-color: #ff7c7c;
  101. }
  102. .circular-progress-percentage-50 {
  103. animation: circular-loading-50 0s linear forwards 1.8s;
  104. }
  105. .circular-progress-percentage-55 {
  106. animation: circular-loading-55 0.18s linear forwards 1.8s;
  107. }
  108. .circular-progress-percentage-60 {
  109. animation: circular-loading-60 0.36s linear forwards 1.8s;
  110. }
  111. .circular-progress-percentage-65 {
  112. animation: circular-loading-65 0.54s linear forwards 1.8s;
  113. }
  114. .circular-progress-percentage-70 {
  115. animation: circular-loading-70 0.72s linear forwards 1.8s;
  116. }
  117. .circular-progress-percentage-75 {
  118. animation: circular-loading-75 0.9s linear forwards 1.8s;
  119. }
  120. .circular-progress-percentage-80 {
  121. animation: circular-loading-80 1.08s linear forwards 1.8s;
  122. }
  123. .circular-progress-percentage-85 {
  124. animation: circular-loading-85 1.26s linear forwards 1.8s;
  125. }
  126. .circular-progress-percentage-90 {
  127. animation: circular-loading-90 1.44s linear forwards 1.8s;
  128. }
  129. .circular-progress-percentage-95 {
  130. animation: circular-loading-95 1.62s linear forwards 1.8s;
  131. }
  132. .circular-progress-percentage-100 {
  133. animation: circular-loading-100 1.8s linear forwards 1.8s;
  134. }
  135. @keyframes circular-loading-50 {
  136. 0% {
  137. transform: rotate(0deg);
  138. }
  139. 100% {
  140. transform: rotate(0deg);
  141. }
  142. }
  143. @keyframes circular-loading-55 {
  144. 0% {
  145. transform: rotate(0deg);
  146. }
  147. 100% {
  148. transform: rotate(18deg);
  149. }
  150. }
  151. @keyframes circular-loading-60 {
  152. 0% {
  153. transform: rotate(0deg);
  154. }
  155. 100% {
  156. transform: rotate(36deg);
  157. }
  158. }
  159. @keyframes circular-loading-65 {
  160. 0% {
  161. transform: rotate(0deg);
  162. }
  163. 100% {
  164. transform: rotate(54deg);
  165. }
  166. }
  167. @keyframes circular-loading-70 {
  168. 0% {
  169. transform: rotate(0deg);
  170. }
  171. 100% {
  172. transform: rotate(72deg);
  173. }
  174. }
  175. @keyframes circular-loading-75 {
  176. 0% {
  177. transform: rotate(0deg);
  178. }
  179. 100% {
  180. transform: rotate(90deg);
  181. }
  182. }
  183. @keyframes circular-loading-80 {
  184. 0% {
  185. transform: rotate(0deg);
  186. }
  187. 100% {
  188. transform: rotate(108deg);
  189. }
  190. }
  191. @keyframes circular-loading-85 {
  192. 0% {
  193. transform: rotate(0deg);
  194. }
  195. 100% {
  196. transform: rotate(126deg);
  197. }
  198. }
  199. @keyframes circular-loading-90 {
  200. 0% {
  201. transform: rotate(0deg);
  202. }
  203. 100% {
  204. transform: rotate(144deg);
  205. }
  206. }
  207. @keyframes circular-loading-95 {
  208. 0% {
  209. transform: rotate(0deg);
  210. }
  211. 100% {
  212. transform: rotate(162deg);
  213. }
  214. }
  215. @keyframes circular-loading-100 {
  216. 0% {
  217. transform: rotate(0deg);
  218. }
  219. 100% {
  220. transform: rotate(180deg);
  221. }
  222. }
  223. @keyframes circular-loading-1 {
  224. 0% {
  225. transform: rotate(0deg);
  226. }
  227. 100% {
  228. transform: rotate(180deg);
  229. }
  230. }
  231. @keyframes circular-loading-2 {
  232. 0% {
  233. transform: rotate(0deg);
  234. }
  235. 100% {
  236. transform: rotate(144deg);
  237. }
  238. }
  239. @keyframes circular-loading-3 {
  240. 0% {
  241. transform: rotate(0deg);
  242. }
  243. 100% {
  244. transform: rotate(90deg);
  245. }
  246. }
  247. @keyframes circular-loading-4 {
  248. 0% {
  249. transform: rotate(0deg);
  250. }
  251. 100% {
  252. transform: rotate(36deg);
  253. }
  254. }
  255. @keyframes circular-loading-5 {
  256. 0% {
  257. transform: rotate(0deg);
  258. }
  259. 100% {
  260. transform: rotate(126deg);
  261. }
  262. }
  263. @media only screen and (max-width: 990px) {
  264. .circular-progress {
  265. margin-bottom: 20px;
  266. }
  267. }
  268. /* ============= Device specific fixes ======= */
  269. /* Large screens such as TV */
  270. @media only screen and (min-width: 1824px) {
  271. }
  272. /* Extra large devices (large desktops, 1200px and up) */
  273. @media (max-width: 1400px) {
  274. }
  275. @media (max-width: 1200px) {
  276. }
  277. /* IPad Pro */
  278. @media (max-width: 1024px) {
  279. }
  280. /* Large devices (desktops, 992px and up) */
  281. @media (max-width: 992px) {
  282. }
  283. /* Medium devices (tablets, 768px and up) */
  284. @media only screen and (max-width: 768px) {
  285. .about-section.container {
  286. max-width: 100%;
  287. }
  288. }
  289. /* Small devices (landscape phones, 576px and up) */
  290. @media only screen and (max-width: 576px) {
  291. }
  292. /* iPhoneX, iPhone 6,7,8 */
  293. @media only screen and (max-width: 375px) {
  294. }
  295. /* Galaxy S5, Moto G4 */
  296. @media only screen and (max-width: 360px) {
  297. }
  298. /* iPhone 5 or before */
  299. @media only screen and (max-width: 320px) {
  300. }