Fix auto-prefixer workflow (#971)
Signed-off-by: Emruz Hossain <hossainemruz@gmail.com>
This commit is contained in:
parent
0090f7b1fa
commit
f2e549772d
9 changed files with 98 additions and 88 deletions
|
@ -22,7 +22,8 @@
|
|||
}
|
||||
|
||||
.card-img-top {
|
||||
object-fit: cover;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
@include transition();
|
||||
}
|
||||
|
||||
|
@ -61,7 +62,8 @@
|
|||
&:focus {
|
||||
.card-img-top {
|
||||
transform: scale(1.2);
|
||||
object-fit: cover;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
@include transition();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,8 @@ a {
|
|||
|
||||
&:hover,
|
||||
&:focus {
|
||||
text-decoration: get-light-color('hover-over-accent-color') underline;
|
||||
-webkit-text-decoration: get-light-color('hover-over-accent-color') underline;
|
||||
text-decoration: get-light-color('hover-over-accent-color') underline;
|
||||
color: get-light-color('hover-over-accent-color');
|
||||
@include transition();
|
||||
}
|
||||
|
@ -66,7 +67,8 @@ html[data-theme='dark'] {
|
|||
|
||||
&:hover,
|
||||
&:focus {
|
||||
text-decoration: get-dark-color('hover-over-accent-color') underline;
|
||||
-webkit-text-decoration: get-dark-color('hover-over-accent-color') underline;
|
||||
text-decoration: get-dark-color('hover-over-accent-color') underline;
|
||||
color: get-dark-color('hover-over-accent-color');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -96,6 +96,10 @@ html[data-theme='dark'] {
|
|||
}
|
||||
}
|
||||
.gist {
|
||||
&::-moz-selection{
|
||||
background: get-dark-color('text-color');
|
||||
color: get-dark-color('inverse-text-color');
|
||||
}
|
||||
&::selection{
|
||||
background: get-dark-color('text-color');
|
||||
color: get-dark-color('inverse-text-color');
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// in Hugo, Page kind can be either "section" or "page".
|
||||
// if it is section, then it's a page with a list of items, for example /posts
|
||||
// if it is page, then it is a single page.
|
||||
/* in Hugo, Page kind can be either "section" or "page".*/
|
||||
/* if it is section, then it's a page with a list of items, for example /posts*/
|
||||
/* if it is page, then it is a single page.*/
|
||||
body.kind-section,
|
||||
body.kind-term,
|
||||
body.kind-page {
|
||||
|
|
|
@ -53,7 +53,6 @@ body {
|
|||
ol > ol,
|
||||
li > ol,
|
||||
li > ul {
|
||||
-webkit-padding-start: 1rem;
|
||||
padding-inline-start: 1rem;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,8 @@
|
|||
@include transition();
|
||||
&:hover {
|
||||
margin-left: 5px;
|
||||
text-decoration: get-light-color('muted-text-color') underline;
|
||||
-webkit-text-decoration: get-light-color('muted-text-color') underline;
|
||||
text-decoration: get-light-color('muted-text-color') underline;
|
||||
@include transition();
|
||||
}
|
||||
}
|
||||
|
@ -79,7 +80,8 @@ html[data-theme='dark'] {
|
|||
a {
|
||||
color: get-dark-color('muted-text-color');
|
||||
&:hover {
|
||||
text-decoration: get-dark-color('muted-text-color') underline;
|
||||
-webkit-text-decoration: get-dark-color('muted-text-color') underline;
|
||||
text-decoration: get-dark-color('muted-text-color') underline;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -42,7 +42,4 @@
|
|||
@keyframes spin {
|
||||
to { -webkit-transform: rotate(360deg); }
|
||||
}
|
||||
@-webkit-keyframes spin {
|
||||
to { -webkit-transform: rotate(360deg); }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue