about.scss 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. #about {
  2. .social-link {
  3. list-style: none;
  4. padding: 0.2rem;
  5. }
  6. .social-link a {
  7. font-size: 1.5rem;
  8. color: #3c4858;
  9. padding: 0.5rem;
  10. }
  11. .social-link a:hover {
  12. color: #248aaa;
  13. transition: all 0.3s ease-in;
  14. }
  15. .circular-progress {
  16. width: 150px;
  17. height: 150px;
  18. line-height: 150px;
  19. background: none;
  20. margin: 0 auto;
  21. box-shadow: none;
  22. position: relative;
  23. }
  24. .circular-progress:after {
  25. content: "";
  26. width: 100%;
  27. height: 100%;
  28. border-radius: 50%;
  29. border: 12px solid #f9fafc;
  30. position: absolute;
  31. top: 0;
  32. left: 0;
  33. }
  34. .circular-progress > span {
  35. width: 50%;
  36. height: 100%;
  37. overflow: hidden;
  38. position: absolute;
  39. top: 0;
  40. z-index: 1;
  41. }
  42. .circular-progress .circular-progress-left {
  43. left: 0;
  44. }
  45. .circular-progress .circular-progress-bar {
  46. width: 100%;
  47. height: 100%;
  48. background: none;
  49. border-width: 12px;
  50. border-style: solid;
  51. position: absolute;
  52. top: 0;
  53. }
  54. .circular-progress .circular-progress-left .circular-progress-bar {
  55. left: 100%;
  56. border-top-right-radius: 80px;
  57. border-bottom-right-radius: 80px;
  58. border-left: 0;
  59. transform-origin: center left;
  60. }
  61. .circular-progress .circular-progress-right {
  62. right: 0;
  63. }
  64. .circular-progress .circular-progress-right .circular-progress-bar {
  65. left: -100%;
  66. border-top-left-radius: 80px;
  67. border-bottom-left-radius: 80px;
  68. border-right: 0;
  69. transform-origin: center right;
  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. animation: circular-loading-50 0s linear forwards 1.8s;
  109. }
  110. .circular-progress-percentage-55 {
  111. animation: circular-loading-55 0.18s linear forwards 1.8s;
  112. }
  113. .circular-progress-percentage-60 {
  114. animation: circular-loading-60 0.36s linear forwards 1.8s;
  115. }
  116. .circular-progress-percentage-65 {
  117. animation: circular-loading-65 0.54s linear forwards 1.8s;
  118. }
  119. .circular-progress-percentage-70 {
  120. animation: circular-loading-70 0.72s linear forwards 1.8s;
  121. }
  122. .circular-progress-percentage-75 {
  123. animation: circular-loading-75 0.9s linear forwards 1.8s;
  124. }
  125. .circular-progress-percentage-80 {
  126. animation: circular-loading-80 1.08s linear forwards 1.8s;
  127. }
  128. .circular-progress-percentage-85 {
  129. animation: circular-loading-85 1.26s linear forwards 1.8s;
  130. }
  131. .circular-progress-percentage-90 {
  132. animation: circular-loading-90 1.44s linear forwards 1.8s;
  133. }
  134. .circular-progress-percentage-95 {
  135. animation: circular-loading-95 1.62s linear forwards 1.8s;
  136. }
  137. .circular-progress-percentage-100 {
  138. animation: circular-loading-100 1.8s linear forwards 1.8s;
  139. }
  140. @keyframes circular-loading-50 {
  141. 0% {
  142. transform: rotate(0deg);
  143. }
  144. 100% {
  145. transform: rotate(0deg);
  146. }
  147. }
  148. @keyframes circular-loading-55 {
  149. 0% {
  150. transform: rotate(0deg);
  151. }
  152. 100% {
  153. transform: rotate(18deg);
  154. }
  155. }
  156. @keyframes circular-loading-60 {
  157. 0% {
  158. transform: rotate(0deg);
  159. }
  160. 100% {
  161. transform: rotate(36deg);
  162. }
  163. }
  164. @keyframes circular-loading-65 {
  165. 0% {
  166. transform: rotate(0deg);
  167. }
  168. 100% {
  169. transform: rotate(54deg);
  170. }
  171. }
  172. @keyframes circular-loading-70 {
  173. 0% {
  174. transform: rotate(0deg);
  175. }
  176. 100% {
  177. transform: rotate(72deg);
  178. }
  179. }
  180. @keyframes circular-loading-75 {
  181. 0% {
  182. transform: rotate(0deg);
  183. }
  184. 100% {
  185. transform: rotate(90deg);
  186. }
  187. }
  188. @keyframes circular-loading-80 {
  189. 0% {
  190. transform: rotate(0deg);
  191. }
  192. 100% {
  193. transform: rotate(108deg);
  194. }
  195. }
  196. @keyframes circular-loading-85 {
  197. 0% {
  198. transform: rotate(0deg);
  199. }
  200. 100% {
  201. transform: rotate(126deg);
  202. }
  203. }
  204. @keyframes circular-loading-90 {
  205. 0% {
  206. transform: rotate(0deg);
  207. }
  208. 100% {
  209. transform: rotate(144deg);
  210. }
  211. }
  212. @keyframes circular-loading-95 {
  213. 0% {
  214. transform: rotate(0deg);
  215. }
  216. 100% {
  217. transform: rotate(162deg);
  218. }
  219. }
  220. @keyframes circular-loading-100 {
  221. 0% {
  222. transform: rotate(0deg);
  223. }
  224. 100% {
  225. transform: rotate(180deg);
  226. }
  227. }
  228. @keyframes circular-loading-1 {
  229. 0% {
  230. transform: rotate(0deg);
  231. }
  232. 100% {
  233. transform: rotate(180deg);
  234. }
  235. }
  236. @keyframes circular-loading-2 {
  237. 0% {
  238. transform: rotate(0deg);
  239. }
  240. 100% {
  241. transform: rotate(144deg);
  242. }
  243. }
  244. @keyframes circular-loading-3 {
  245. 0% {
  246. transform: rotate(0deg);
  247. }
  248. 100% {
  249. transform: rotate(90deg);
  250. }
  251. }
  252. @keyframes circular-loading-4 {
  253. 0% {
  254. transform: rotate(0deg);
  255. }
  256. 100% {
  257. transform: rotate(36deg);
  258. }
  259. }
  260. @keyframes circular-loading-5 {
  261. 0% {
  262. transform: rotate(0deg);
  263. }
  264. 100% {
  265. transform: rotate(126deg);
  266. }
  267. }
  268. @media only screen and (max-width: 990px) {
  269. .circular-progress {
  270. margin-bottom: 20px;
  271. }
  272. }
  273. /* ============= Device specific fixes ======= */
  274. /* Large screens such as TV */
  275. @media only screen and (min-width: 1824px) {
  276. }
  277. /* Extra large devices (large desktops, 1200px and up) */
  278. @media (max-width: 1400px) {
  279. }
  280. @media (max-width: 1200px) {
  281. }
  282. /* IPad Pro */
  283. @media (max-width: 1024px) {
  284. }
  285. /* Large devices (desktops, 992px and up) */
  286. @media (max-width: 992px) {
  287. }
  288. /* Medium devices (tablets, 768px and up) */
  289. @media only screen and (max-width: 768px) {
  290. .about-section.container {
  291. max-width: 100%;
  292. }
  293. .circular-progress {
  294. width: 135px;
  295. height: 135px;
  296. }
  297. }
  298. /* Small devices (landscape phones, 576px and up) */
  299. @media only screen and (max-width: 576px) {
  300. .circular-progress {
  301. width: 150px;
  302. height: 150px;
  303. }
  304. .circular-progress .circular-progress-value {
  305. font-size: 1rem;
  306. }
  307. }
  308. /* iPhoneX, iPhone 6,7,8 */
  309. @media only screen and (max-width: 375px) {
  310. }
  311. /* Galaxy S5, Moto G4 */
  312. @media only screen and (max-width: 360px) {
  313. }
  314. /* iPhone 5 or before */
  315. @media only screen and (max-width: 320px) {
  316. .col-6 {
  317. flex: auto;
  318. max-width: 100%;
  319. }
  320. .social-link {
  321. flex-wrap: wrap;
  322. }
  323. }
  324. }