123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385 |
- .social-link {
- list-style: none;
- padding: 0.2rem;
- }
- .social-link a {
- font-size: 1.5rem;
- color: #3c4858;
- padding: 0.5rem;
- }
- .social-link a:hover {
- color: #248aaa;
- transition: all 0.3s ease-in;
- }
- .circular-progress {
- width: 150px;
- height: 150px;
- line-height: 150px;
- background: none;
- margin: 0 auto;
- box-shadow: none;
- position: relative;
- }
- .circular-progress:after {
- content: "";
- width: 100%;
- height: 100%;
- border-radius: 50%;
- border: 12px solid #f9fafc;
- position: absolute;
- top: 0;
- left: 0;
- }
- .circular-progress > span {
- width: 50%;
- height: 100%;
- overflow: hidden;
- position: absolute;
- top: 0;
- z-index: 1;
- }
- .circular-progress .circular-progress-left {
- left: 0;
- }
- .circular-progress .circular-progress-bar {
- width: 100%;
- height: 100%;
- background: none;
- border-width: 12px;
- border-style: solid;
- position: absolute;
- top: 0;
- }
- .circular-progress .circular-progress-left .circular-progress-bar {
- left: 100%;
- border-top-right-radius: 80px;
- border-bottom-right-radius: 80px;
- border-left: 0;
- transform-origin: center left;
- }
- .circular-progress .circular-progress-right {
- right: 0;
- }
- .circular-progress .circular-progress-right .circular-progress-bar {
- left: -100%;
- border-top-left-radius: 80px;
- border-bottom-left-radius: 80px;
- border-right: 0;
- transform-origin: center right;
- animation: circular-loading-1 1.8s linear forwards;
- }
- .circular-progress .circular-progress-value {
- width: 90%;
- height: 90%;
- padding: 1rem;
- border-radius: 50%;
- background: #3c4858;
- font-size: 1rem;
- color: #f9fafc;
- line-height: initial;
- text-align: center;
- position: absolute;
- top: 5%;
- left: 5%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .circular-progress.blue .circular-progress-bar {
- border-color: #048dff;
- }
- .circular-progress.yellow .circular-progress-bar {
- border-color: #eebb4d;
- }
- .circular-progress.pink .circular-progress-bar {
- border-color: #ed63d2;
- }
- .circular-progress.green .circular-progress-bar {
- border-color: #2dca73;
- }
- .circular-progress.sky .circular-progress-bar {
- border-color: #00c9e3;
- }
- .circular-progress.orange .circular-progress-bar {
- border-color: #ff7c7c;
- }
- .circular-progress-percentage-50 {
- animation: circular-loading-50 0s linear forwards 1.8s;
- }
- .circular-progress-percentage-55 {
- animation: circular-loading-55 0.18s linear forwards 1.8s;
- }
- .circular-progress-percentage-60 {
- animation: circular-loading-60 0.36s linear forwards 1.8s;
- }
- .circular-progress-percentage-65 {
- animation: circular-loading-65 0.54s linear forwards 1.8s;
- }
- .circular-progress-percentage-70 {
- animation: circular-loading-70 0.72s linear forwards 1.8s;
- }
- .circular-progress-percentage-75 {
- animation: circular-loading-75 0.9s linear forwards 1.8s;
- }
- .circular-progress-percentage-80 {
- animation: circular-loading-80 1.08s linear forwards 1.8s;
- }
- .circular-progress-percentage-85 {
- animation: circular-loading-85 1.26s linear forwards 1.8s;
- }
- .circular-progress-percentage-90 {
- animation: circular-loading-90 1.44s linear forwards 1.8s;
- }
- .circular-progress-percentage-95 {
- animation: circular-loading-95 1.62s linear forwards 1.8s;
- }
- .circular-progress-percentage-100 {
- animation: circular-loading-100 1.8s linear forwards 1.8s;
- }
- @keyframes circular-loading-50 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(0deg);
- }
- }
- @keyframes circular-loading-55 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(18deg);
- }
- }
- @keyframes circular-loading-60 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(36deg);
- }
- }
- @keyframes circular-loading-65 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(54deg);
- }
- }
- @keyframes circular-loading-70 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(72deg);
- }
- }
- @keyframes circular-loading-75 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(90deg);
- }
- }
- @keyframes circular-loading-80 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(108deg);
- }
- }
- @keyframes circular-loading-85 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(126deg);
- }
- }
- @keyframes circular-loading-90 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(144deg);
- }
- }
- @keyframes circular-loading-95 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(162deg);
- }
- }
- @keyframes circular-loading-100 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(180deg);
- }
- }
- @keyframes circular-loading-1 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(180deg);
- }
- }
- @keyframes circular-loading-2 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(144deg);
- }
- }
- @keyframes circular-loading-3 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(90deg);
- }
- }
- @keyframes circular-loading-4 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(36deg);
- }
- }
- @keyframes circular-loading-5 {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(126deg);
- }
- }
- @media only screen and (max-width: 990px) {
- .circular-progress {
- margin-bottom: 20px;
- }
- }
- /* ============= Device specific fixes ======= */
- /* Large screens such as TV */
- @media only screen and (min-width: 1824px) {
- }
- /* Extra large devices (large desktops, 1200px and up) */
- @media (max-width: 1400px) {
- }
- @media (max-width: 1200px) {
- }
- /* IPad Pro */
- @media (max-width: 1024px) {
- }
- /* Large devices (desktops, 992px and up) */
- @media (max-width: 992px) {
- }
- /* Medium devices (tablets, 768px and up) */
- @media only screen and (max-width: 768px) {
- .about-section.container {
- max-width: 100%;
- }
-
- .circular-progress {
- width: 135px;
- height: 135px;
- }
- }
- /* Small devices (landscape phones, 576px and up) */
- @media only screen and (max-width: 576px) {
- .circular-progress {
- width: 150px;
- height: 150px;
- }
- .circular-progress .circular-progress-value {
- font-size: 1rem;
- }
- }
- /* iPhoneX, iPhone 6,7,8 */
- @media only screen and (max-width: 375px) {
- }
- /* Galaxy S5, Moto G4 */
- @media only screen and (max-width: 360px) {
- }
- /* iPhone 5 or before */
- @media only screen and (max-width: 320px) {
- .col-6 {
- flex: auto;
- max-width: 100%;
- }
- .social-link {
- flex-wrap: wrap;
- }
- }
|