diff --git a/archivebox/themes/default/base.html b/archivebox/themes/default/base.html new file mode 100644 index 00000000..ed7d1be9 --- /dev/null +++ b/archivebox/themes/default/base.html @@ -0,0 +1,286 @@ +{% load static %} + + + + + + Archived Sites + + + + + + {% block extra_head %} + {% endblock %} + + + + + + +
+
+ +
+
+ {% block body %} + {% endblock %} +
+ + + + \ No newline at end of file diff --git a/archivebox/themes/default/static/add.css b/archivebox/themes/default/static/add.css new file mode 100644 index 00000000..b4e83e42 --- /dev/null +++ b/archivebox/themes/default/static/add.css @@ -0,0 +1,39 @@ + .dashboard #content { + width: 100%; + margin-right: 0px; + margin-left: 0px; + } + #submit { + border: 1px solid rgba(0,0,0,0.2); + padding: 10px; + border-radius: 4px; + background-color: #f5dd5d; + color: #333; + font-size: 18px; + font-weight: 800; + } + #add-form button[role=submit]:hover { + background-color: #e5cd4d; + } + #add-form label { + display: block; + font-size: 16px; + } + #add-form textarea { + width: 100%; + min-height: 300px; + } + #delay-warning div { + border: 1px solid red; + border-radius: 4px; + margin: 10px; + padding: 10px; + font-size: 15px; + background-color: #F5DD5D; + } + #stdout { + background-color: #ded; + padding: 10px 10px; + border-radius: 4px; + white-space: normal; + } \ No newline at end of file