summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorjvoisin2019-02-22 20:31:27 +0100
committerjvoisin2019-02-22 20:31:27 +0100
commit12be535945cbfbf0aa8ca149348b0eb683a23d5b (patch)
treebfd7549c0be8dc2fbb27dc9348085d030cc53cd6 /static
parent1837b53ece60a0a9f6106480ec05ec92c7cf62bf (diff)
Add a way to display the supported fileformats
Diffstat (limited to 'static')
-rw-r--r--static/style.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
index 5f854a4..0d78cbd 100644
--- a/static/style.css
+++ b/static/style.css
@@ -39,3 +39,21 @@ a {
39a:hover { 39a:hover {
40 text-decoration: underline; 40 text-decoration: underline;
41} 41}
42
43li {
44 margin-bottom: 0;
45}
46
47details > summary:before {
48 content: "▶ ";
49}
50details[open] > summary:before {
51 content: "▼ ";
52}
53
54.fakelink {
55 color: #1EAEDB;
56}
57.fakelink:hover {
58 text-decoration: underline;
59}