implement css variables
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
89887786b3
commit
3a992a745f
1 changed files with 4 additions and 4 deletions
|
@ -136,14 +136,14 @@ h1 {margin-top: 3vh;}
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
height: 3cm;
|
height: 3cm;
|
||||||
transition-duration: 0.2s;
|
transition-duration: 0.2s;
|
||||||
box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.13);
|
box-shadow: 0px 1px 4px 1px rgba(var(--black), 0.13);
|
||||||
}
|
}
|
||||||
|
|
||||||
.infocard {
|
.infocard {
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.13);
|
box-shadow: 0px 1px 4px 1px rgba(var(--black), 0.13);
|
||||||
}
|
}
|
||||||
|
|
||||||
.itemcard-stealth {
|
.itemcard-stealth {
|
||||||
|
@ -156,7 +156,7 @@ h1 {margin-top: 3vh;}
|
||||||
|
|
||||||
.list {
|
.list {
|
||||||
border-radius: 12px 12px 12px 12px;
|
border-radius: 12px 12px 12px 12px;
|
||||||
box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.13);
|
box-shadow: 0px 1px 4px 1px rgba(var(--black), 0.13);
|
||||||
margin-bottom: 50px;
|
margin-bottom: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -224,7 +224,7 @@ h1 {margin-top: 3vh;}
|
||||||
.togglegroups-highlighted {
|
.togglegroups-highlighted {
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.13);
|
box-shadow: 0px 1px 4px 1px rgba(var(--black), 0.13);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue