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