small CSS fix, reverting to default.

line 62 and 74 : background URL from "taverna.png" (my change) to "tavern.png" (default). I had made the url changes as a test for functionality while altering BG behavior. 

Even if taverna.png is in the CSS, the BG swapping works properly. 

I think I did this because having it set to tavern.png in the initial CSS will remove whatever BG was chosen by the user in a previous session. Could be wrong about that.
This commit is contained in:
RossAscends
2023-02-25 06:18:15 +09:00
committed by GitHub
parent 1f4c01fedf
commit aa33f3be94

View File

@ -59,7 +59,7 @@ code {
}
#bg1{
background: url(backgrounds/taverna.png);
background: url(backgrounds/tavern.png);
background-size: auto 100%;
background-repeat: no-repeat;
background-attachment: fixed;
@ -71,7 +71,7 @@ code {
z-index: -2;
}
#bg2{
background: url(backgrounds/taverna.png);
background: url(backgrounds/tavern.png);
background-size: auto 100%;
background-repeat: no-repeat;
background-attachment: fixed;
@ -2141,4 +2141,4 @@ body {
background: transparent;
-webkit-transition: width 0s ease;
transition: width 0s ease;
}
}