[create-pull-request] automated change
This commit is contained in:
parent
85971e6057
commit
fe4408fa32
7 changed files with 218 additions and 16 deletions
|
@ -67,6 +67,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-cards .paginator {
|
.content-cards .paginator {
|
||||||
|
width: -webkit-fit-content;
|
||||||
|
width: -moz-fit-content;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
@ -89,6 +91,8 @@
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
margin-top: 0.5rem;
|
margin-top: 0.5rem;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
|
width: -webkit-fit-content;
|
||||||
|
width: -moz-fit-content;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -136,7 +136,8 @@ img.right {
|
||||||
|
|
||||||
.card .card-head {
|
.card .card-head {
|
||||||
height: 172px;
|
height: 172px;
|
||||||
object-fit: cover;
|
-o-object-fit: cover;
|
||||||
|
object-fit: cover;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.toc-holder {
|
.toc-holder {
|
||||||
|
position: -webkit-sticky;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 4.5rem;
|
top: 4.5rem;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
|
@ -187,7 +188,11 @@ tbody tr:hover {
|
||||||
|
|
||||||
figure {
|
figure {
|
||||||
border: 1px solid #c0ccda;
|
border: 1px solid #c0ccda;
|
||||||
|
height: -webkit-fit-content;
|
||||||
|
height: -moz-fit-content;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
|
width: -webkit-fit-content;
|
||||||
|
width: -moz-fit-content;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
@ -240,7 +245,8 @@ a.header-anchor code {
|
||||||
.content ol > ol,
|
.content ol > ol,
|
||||||
.content li > ol,
|
.content li > ol,
|
||||||
.content li > ul {
|
.content li > ul {
|
||||||
padding-inline-start: 1rem;
|
-webkit-padding-start: 1rem;
|
||||||
|
padding-inline-start: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
kbd {
|
kbd {
|
||||||
|
@ -493,6 +499,8 @@ mark {
|
||||||
position: relative;
|
position: relative;
|
||||||
/* height: fit-content; */
|
/* height: fit-content; */
|
||||||
flex: 100%;
|
flex: 100%;
|
||||||
|
height: -webkit-fit-content;
|
||||||
|
height: -moz-fit-content;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
max-height: 200vh;
|
max-height: 200vh;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
.sidebar-holder {
|
.sidebar-holder {
|
||||||
top: 2.5rem;
|
top: 2.5rem;
|
||||||
|
position: -webkit-sticky;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
background-color: #f9fafc;
|
background-color: #f9fafc;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
@ -25,6 +26,8 @@
|
||||||
.sidebar-tree {
|
.sidebar-tree {
|
||||||
padding-left: 1rem;
|
padding-left: 1rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
width: -webkit-max-content;
|
||||||
|
width: -moz-max-content;
|
||||||
width: max-content;
|
width: max-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -189,6 +192,7 @@ a.focused {
|
||||||
transition: all ease-out 0.3s;
|
transition: all ease-out 0.3s;
|
||||||
}
|
}
|
||||||
.sidebar-holder {
|
.sidebar-holder {
|
||||||
|
position: -webkit-sticky;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 2.5rem;
|
top: 2.5rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -217,6 +221,7 @@ a.focused {
|
||||||
transition: all ease-out 0.3s;
|
transition: all ease-out 0.3s;
|
||||||
}
|
}
|
||||||
.sidebar-holder {
|
.sidebar-holder {
|
||||||
|
position: -webkit-sticky;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 2.5rem;
|
top: 2.5rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -244,6 +249,8 @@ a.focused {
|
||||||
.sidebar-section.hide {
|
.sidebar-section.hide {
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
height: -webkit-fit-content;
|
||||||
|
height: -moz-fit-content;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
flex: none;
|
flex: none;
|
||||||
max-height: 300vh;
|
max-height: 300vh;
|
||||||
|
@ -253,6 +260,8 @@ a.focused {
|
||||||
|
|
||||||
.sidebar-holder {
|
.sidebar-holder {
|
||||||
max-height: 0;
|
max-height: 0;
|
||||||
|
height: -webkit-fit-content;
|
||||||
|
height: -moz-fit-content;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
@ -266,7 +275,11 @@ a.focused {
|
||||||
|
|
||||||
.sidebar {
|
.sidebar {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
height: -webkit-fit-content;
|
||||||
|
height: -moz-fit-content;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
|
max-height: -webkit-fit-content;
|
||||||
|
max-height: -moz-fit-content;
|
||||||
max-height: fit-content;
|
max-height: fit-content;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
|
|
|
@ -76,7 +76,8 @@
|
||||||
border-bottom-left-radius: 80px;
|
border-bottom-left-radius: 80px;
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
transform-origin: center right;
|
transform-origin: center right;
|
||||||
animation: circular-loading-1 1.8s linear forwards;
|
-webkit-animation: circular-loading-1 1.8s linear forwards;
|
||||||
|
animation: circular-loading-1 1.8s linear forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress .circular-progress-value {
|
.circular-progress .circular-progress-value {
|
||||||
|
@ -118,47 +119,67 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress-percentage-50 {
|
.circular-progress-percentage-50 {
|
||||||
animation: circular-loading-50 0s linear forwards 1.8s;
|
-webkit-animation: circular-loading-50 0s linear forwards 1.8s;
|
||||||
|
animation: circular-loading-50 0s linear forwards 1.8s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress-percentage-55 {
|
.circular-progress-percentage-55 {
|
||||||
animation: circular-loading-55 0.18s linear forwards 1.8s;
|
-webkit-animation: circular-loading-55 0.18s linear forwards 1.8s;
|
||||||
|
animation: circular-loading-55 0.18s linear forwards 1.8s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress-percentage-60 {
|
.circular-progress-percentage-60 {
|
||||||
animation: circular-loading-60 0.36s linear forwards 1.8s;
|
-webkit-animation: circular-loading-60 0.36s linear forwards 1.8s;
|
||||||
|
animation: circular-loading-60 0.36s linear forwards 1.8s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress-percentage-65 {
|
.circular-progress-percentage-65 {
|
||||||
animation: circular-loading-65 0.54s linear forwards 1.8s;
|
-webkit-animation: circular-loading-65 0.54s linear forwards 1.8s;
|
||||||
|
animation: circular-loading-65 0.54s linear forwards 1.8s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress-percentage-70 {
|
.circular-progress-percentage-70 {
|
||||||
animation: circular-loading-70 0.72s linear forwards 1.8s;
|
-webkit-animation: circular-loading-70 0.72s linear forwards 1.8s;
|
||||||
|
animation: circular-loading-70 0.72s linear forwards 1.8s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress-percentage-75 {
|
.circular-progress-percentage-75 {
|
||||||
animation: circular-loading-75 0.9s linear forwards 1.8s;
|
-webkit-animation: circular-loading-75 0.9s linear forwards 1.8s;
|
||||||
|
animation: circular-loading-75 0.9s linear forwards 1.8s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress-percentage-80 {
|
.circular-progress-percentage-80 {
|
||||||
animation: circular-loading-80 1.08s linear forwards 1.8s;
|
-webkit-animation: circular-loading-80 1.08s linear forwards 1.8s;
|
||||||
|
animation: circular-loading-80 1.08s linear forwards 1.8s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress-percentage-85 {
|
.circular-progress-percentage-85 {
|
||||||
animation: circular-loading-85 1.26s linear forwards 1.8s;
|
-webkit-animation: circular-loading-85 1.26s linear forwards 1.8s;
|
||||||
|
animation: circular-loading-85 1.26s linear forwards 1.8s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress-percentage-90 {
|
.circular-progress-percentage-90 {
|
||||||
animation: circular-loading-90 1.44s linear forwards 1.8s;
|
-webkit-animation: circular-loading-90 1.44s linear forwards 1.8s;
|
||||||
|
animation: circular-loading-90 1.44s linear forwards 1.8s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress-percentage-95 {
|
.circular-progress-percentage-95 {
|
||||||
animation: circular-loading-95 1.62s linear forwards 1.8s;
|
-webkit-animation: circular-loading-95 1.62s linear forwards 1.8s;
|
||||||
|
animation: circular-loading-95 1.62s linear forwards 1.8s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.circular-progress-percentage-100 {
|
.circular-progress-percentage-100 {
|
||||||
animation: circular-loading-100 1.8s linear forwards 1.8s;
|
-webkit-animation: circular-loading-100 1.8s linear forwards 1.8s;
|
||||||
|
animation: circular-loading-100 1.8s linear forwards 1.8s;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-50 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-50 {
|
@keyframes circular-loading-50 {
|
||||||
|
@ -170,6 +191,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-55 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(18deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-55 {
|
@keyframes circular-loading-55 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -179,6 +209,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-60 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(36deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-60 {
|
@keyframes circular-loading-60 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -188,6 +227,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-65 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(54deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-65 {
|
@keyframes circular-loading-65 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -197,6 +245,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-70 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(72deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-70 {
|
@keyframes circular-loading-70 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -206,6 +263,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-75 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(90deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-75 {
|
@keyframes circular-loading-75 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -215,6 +281,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-80 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(108deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-80 {
|
@keyframes circular-loading-80 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -224,6 +299,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-85 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(126deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-85 {
|
@keyframes circular-loading-85 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -233,6 +317,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-90 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(144deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-90 {
|
@keyframes circular-loading-90 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -242,6 +335,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-95 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(162deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-95 {
|
@keyframes circular-loading-95 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -251,6 +353,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-100 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-100 {
|
@keyframes circular-loading-100 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -260,6 +371,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-1 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-1 {
|
@keyframes circular-loading-1 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -269,6 +389,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-2 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(144deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-2 {
|
@keyframes circular-loading-2 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -278,6 +407,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-3 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(90deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-3 {
|
@keyframes circular-loading-3 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -287,6 +425,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-4 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(36deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-4 {
|
@keyframes circular-loading-4 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
@ -296,6 +443,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes circular-loading-5 {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(126deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes circular-loading-5 {
|
@keyframes circular-loading-5 {
|
||||||
0% {
|
0% {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
|
|
@ -14,7 +14,8 @@
|
||||||
background-attachment: fixed;
|
background-attachment: fixed;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
filter: blur(3px);
|
-webkit-filter: blur(3px);
|
||||||
|
filter: blur(3px);
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,7 +54,24 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.bounce {
|
.bounce {
|
||||||
animation: bounce 2s infinite;
|
-webkit-animation: bounce 2s infinite;
|
||||||
|
animation: bounce 2s infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes bounce {
|
||||||
|
0%,
|
||||||
|
20%,
|
||||||
|
50%,
|
||||||
|
80%,
|
||||||
|
100% {
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
40% {
|
||||||
|
transform: translateY(-30px);
|
||||||
|
}
|
||||||
|
60% {
|
||||||
|
transform: translateY(-15px);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes bounce {
|
@keyframes bounce {
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
.skills-section .card .card-head {
|
.skills-section .card .card-head {
|
||||||
background-color: #f9fafc;
|
background-color: #f9fafc;
|
||||||
|
height: -webkit-fit-content;
|
||||||
|
height: -moz-fit-content;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
padding: 0.7rem;
|
padding: 0.7rem;
|
||||||
padding-bottom: 0rem;
|
padding-bottom: 0rem;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue