summaryrefslogtreecommitdiff
path: root/www/styles
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2015-03-19 22:11:15 (GMT)
committerChristian Pointner <equinox@helsinki.at>2015-03-19 22:16:10 (GMT)
commit259e1c7a81ea9a096c227a6bc44114a7a9cf3a50 (patch)
tree051c708e449b5e5afb6ba25bce169b280045f254 /www/styles
parentd7795f99ed3fb52564fa6d2340d928ae9b191e5b (diff)
implemented a more secure directory structure
Diffstat (limited to 'www/styles')
-rw-r--r--www/styles/auth.css46
-rw-r--r--www/styles/musicpools.css0
-rw-r--r--www/styles/shows.css34
3 files changed, 80 insertions, 0 deletions
diff --git a/www/styles/auth.css b/www/styles/auth.css
new file mode 100644
index 0000000..8100ecd
--- /dev/null
+++ b/www/styles/auth.css
@@ -0,0 +1,46 @@
+.form-auth {
+ max-width: 330px;
+ padding: 15px;
+ margin: 0 auto;
+}
+.form-auth img {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+ margin-bottom: 10px;
+}
+.form-auth .form-auth-heading {
+ margin-bottom: 10px;
+}
+.form-auth .form-control {
+ position: relative;
+ height: auto;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 10px;
+ font-size: 16px;
+ width: 100%;
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+.form-auth .form-control:focus {
+ z-index: 2;
+}
+.form-auth input[type="text"] {
+ margin-bottom: -1px;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+.form-auth input[type="password"] {
+ margin-bottom: 10px;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+}
+.form-auth button[type="submit"] {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+ width: 100%;
+}
diff --git a/www/styles/musicpools.css b/www/styles/musicpools.css
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/www/styles/musicpools.css
diff --git a/www/styles/shows.css b/www/styles/shows.css
new file mode 100644
index 0000000..a6a4696
--- /dev/null
+++ b/www/styles/shows.css
@@ -0,0 +1,34 @@
+#show-title {
+ text-align: center;
+}
+#show-details {
+ margin-top: 1.5em;
+ margin-bottom: 1em;
+}
+#show-selector {
+ height: 2.5em;
+ width: 100%;
+}
+#current-week {
+ display: block;
+ margin: 0.5em;
+ padding: 0.5em 1em;
+}
+#shows-upload div.modal-body {
+ margin-left: auto;
+ margin-right: auto;
+ width: 330px;
+ height: 330px;
+ background-image: url('/img/dz-backdrop.png');
+ background-repeat: no-repeat;
+ background-position: center center;
+}
+#shows-upload div.modal-body form {
+ display: block;
+ width: 100%;
+ height: 100%;
+ margin: 0px;
+}
+#shows-upload div.modal-body form div.dz-preview {
+ display: none;
+}