Skip to content

Commit

Permalink
Make static work on development
Browse files Browse the repository at this point in the history
  • Loading branch information
katjabercic committed Nov 2, 2023
1 parent ad255e6 commit 5484e0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions web/concepts/static/concepts/mathswitch.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
footer {
border: 1px solid red;
text-align: center;
/* border: 1px solid red; */
}

.powered-by-wikidata {
content: url("http://imgur.com/SZ8Cm.jpg");
content: url("wd-light.png");
transform: scale(.5);
}

@media (prefers-color-scheme: dark) {
.powered-by-wikidata {
content: url("http://imgur.com/SZ8Cm.jpg");
content: url("wd-dark.png");
}
}
2 changes: 1 addition & 1 deletion web/concepts/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!doctype html>
{% load static %}
<html lang="en">
<head>
{% load static %}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
Expand Down

0 comments on commit 5484e0c

Please sign in to comment.