v0.10.20b - Darkmode fixes
This commit is contained in:
parent
efb2840ff0
commit
34b078b21a
|
@ -10,7 +10,11 @@
|
||||||
margin-bottom: 7px;
|
margin-bottom: 7px;
|
||||||
width: auto;
|
width: auto;
|
||||||
heigt: auto;
|
heigt: auto;
|
||||||
|
@if(request()->cookie("mode") == "dark")
|
||||||
|
background-color: rgba(0,0,0, 0.3);
|
||||||
|
@else
|
||||||
background-color: white;
|
background-color: white;
|
||||||
|
@endif
|
||||||
}
|
}
|
||||||
|
|
||||||
div.header {
|
div.header {
|
||||||
|
@ -56,19 +60,21 @@
|
||||||
|
|
||||||
.information{
|
.information{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: rgba(211, 211, 211, 0.3);
|
background-color: rgba(0, 0, 0, 0.2);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card > .img > a > img, .card > .img > img {
|
.card > .img > a > img, .card > .img > img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
} {
|
|
||||||
width: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
html,body,main{
|
html,body,main{
|
||||||
|
@if(request()->cookie("mode") == "dark")
|
||||||
|
|
||||||
|
@else
|
||||||
background-color: rgb(200,200,200);
|
background-color: rgb(200,200,200);
|
||||||
|
@endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue