mirror of
http://git.carcosa.net/jmcbray/brutaldon.git
synced 2024-11-27 09:10:08 -05:00
Serve assets locally
This commit is contained in:
parent
b6d2d38e7c
commit
7420755110
@ -19,16 +19,20 @@ div.card-header-title, div.card-header-icon {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.media {
|
.media {
|
||||||
background-color: white;
|
/* background-color: white; */
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
-webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
|
-webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
|
||||||
box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
|
box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
|
||||||
color: #4a4a4a;
|
/* color: #4a4a4a; */
|
||||||
padding: 1.25rem;
|
padding: 1.25rem;
|
||||||
margin-bottom: 0.75rem;
|
margin-bottom: 0.75rem;
|
||||||
margin-top: 0.75rem;
|
margin-top: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.media-content {
|
||||||
|
padding: 1.5ex;
|
||||||
|
}
|
||||||
|
|
||||||
.is-max-128 {
|
.is-max-128 {
|
||||||
max-height: 128px;
|
max-height: 128px;
|
||||||
max-width: 128px;
|
max-width: 128px;
|
||||||
@ -45,7 +49,7 @@ figure.media-left p.image a img
|
|||||||
}
|
}
|
||||||
|
|
||||||
.active-context {
|
.active-context {
|
||||||
background-color: #FFF8DC;
|
/* background-color: #FFF8DC; */
|
||||||
}
|
}
|
||||||
|
|
||||||
h2.subtitle
|
h2.subtitle
|
||||||
|
1
brutaldon/static/css/bulma.min.css
vendored
Normal file
1
brutaldon/static/css/bulma.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
6
brutaldon/static/css/bulmaswatch-darkly.min.css
vendored
Normal file
6
brutaldon/static/css/bulmaswatch-darkly.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
brutaldon/static/css/bulmaswatch.min.css.map
Normal file
1
brutaldon/static/css/bulmaswatch.min.css.map
Normal file
File diff suppressed because one or more lines are too long
4
brutaldon/static/css/fork-awesome.min.css
vendored
Normal file
4
brutaldon/static/css/fork-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
brutaldon/static/css/fork-awesome.min.css.map
Normal file
1
brutaldon/static/css/fork-awesome.min.css.map
Normal file
File diff suppressed because one or more lines are too long
BIN
brutaldon/static/fonts/forkawesome-webfont.eot
Normal file
BIN
brutaldon/static/fonts/forkawesome-webfont.eot
Normal file
Binary file not shown.
2748
brutaldon/static/fonts/forkawesome-webfont.svg
Normal file
2748
brutaldon/static/fonts/forkawesome-webfont.svg
Normal file
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 453 KiB |
BIN
brutaldon/static/fonts/forkawesome-webfont.ttf
Normal file
BIN
brutaldon/static/fonts/forkawesome-webfont.ttf
Normal file
Binary file not shown.
BIN
brutaldon/static/fonts/forkawesome-webfont.woff
Normal file
BIN
brutaldon/static/fonts/forkawesome-webfont.woff
Normal file
Binary file not shown.
BIN
brutaldon/static/fonts/forkawesome-webfont.woff2
Normal file
BIN
brutaldon/static/fonts/forkawesome-webfont.woff2
Normal file
Binary file not shown.
@ -8,11 +8,9 @@
|
|||||||
<title>{% block title %}brutaldon{% endblock %}</title>
|
<title>{% block title %}brutaldon{% endblock %}</title>
|
||||||
{% if not fullbrutalism %}
|
{% if not fullbrutalism %}
|
||||||
<link rel="stylesheet"
|
<link rel="stylesheet"
|
||||||
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.0/css/bulma.min.css">
|
href="{% static 'css/bulma.min.css' %}">
|
||||||
<link rel="stylesheet"
|
<link rel="stylesheet"
|
||||||
href="https://cdn.jsdelivr.net/npm/fork-awesome@1.0.11/css/fork-awesome.min.css"
|
href="{% static 'css/fork-awesome.min.css' %}">
|
||||||
integrity="sha256-MGU/JUq/40CFrfxjXb5pZjpoZmxiP2KuICN5ElLFNd8="
|
|
||||||
crossorigin="anonymous">
|
|
||||||
<link rel="stylesheet" href="{% static "css/brutaldon.css" %}">
|
<link rel="stylesheet" href="{% static "css/brutaldon.css" %}">
|
||||||
{% block page_scripts %}
|
{% block page_scripts %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
{
|
{
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"bulma": "^0.7.1",
|
||||||
|
"bulmaswatch": "^0.6.2",
|
||||||
|
"fork-awesome": "^1.1.0",
|
||||||
"mousetrap": "^1.6.2"
|
"mousetrap": "^1.6.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
12
yarn.lock
12
yarn.lock
@ -2,6 +2,18 @@
|
|||||||
# yarn lockfile v1
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
|
bulma@^0.7.1:
|
||||||
|
version "0.7.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/bulma/-/bulma-0.7.1.tgz#73c2e3b2930c90cc272029cbd19918b493fca486"
|
||||||
|
|
||||||
|
bulmaswatch@^0.6.2:
|
||||||
|
version "0.6.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/bulmaswatch/-/bulmaswatch-0.6.2.tgz#5d102b1986d5f48d7f45ff68354c5fe367dc1c76"
|
||||||
|
|
||||||
|
fork-awesome@^1.1.0:
|
||||||
|
version "1.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/fork-awesome/-/fork-awesome-1.1.0.tgz#771c8fcee6bb3d1481c8394094d4ea1f2d3e4acc"
|
||||||
|
|
||||||
mousetrap@^1.6.2:
|
mousetrap@^1.6.2:
|
||||||
version "1.6.2"
|
version "1.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.2.tgz#caadd9cf886db0986fb2fee59a82f6bd37527587"
|
resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.2.tgz#caadd9cf886db0986fb2fee59a82f6bd37527587"
|
||||||
|
Loading…
Reference in New Issue
Block a user