summaryrefslogtreecommitdiffstats
path: root/static/style.css
diff options
context:
space:
mode:
authorclsr <clsr@clsr.net>2016-11-11 17:35:39 +0100
committerclsr <clsr@clsr.net>2016-11-11 17:36:02 +0100
commit553bfa1e8d2d9ac3a7ac202065e7adea1fe3142d (patch)
tree5a63196ba5cb242aff8c05e70487fd75db13270d /static/style.css
downloadgomf-web-flup-553bfa1e8d2d9ac3a7ac202065e7adea1fe3142d.tar.gz
gomf-web-flup-553bfa1e8d2d9ac3a7ac202065e7adea1fe3142d.zip
Initial commit; forked from installgen2/Flup
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css112
1 files changed, 112 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..0650a9a
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,112 @@
+body {
+ text-align: center;
+ background: #111;
+ color: #CCC;
+ width: 400px;
+ margin: auto;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+*::-moz-selection {
+ color: #CCC;
+ background: #595;
+}
+
+*::selection {
+ color: #CCC;
+ background: #195;
+}
+
+footer {
+ height: 20px;
+}
+
+a, a:visited {
+ color: #195;
+}
+
+input[type="text"] {
+ background: #CCC;
+ color: #111;
+ border: none;
+ border-radius: 2px;
+}
+
+input[type="checkbox"] {
+ display: none;
+}
+
+input[type="checkbox"]:checked + label {
+ background: #595;
+}
+
+label.checkbox-wrapper {
+ height: 16px;
+ width: 16px;
+ margin: 4px;
+ background: #CCC;
+ display: inline-block;
+ margin-bottom: -3px;
+ border-radius: 3px;
+}
+
+.no-highlight {
+ -webkit-touch-callout: none;
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.box::before {
+ height: 20px;
+ display: block;
+ content: "";
+ background: #195;
+ margin-bottom: 10px;
+}
+
+.box {
+ background: #222;
+ margin: 20px 0;
+ border-radius: 3px;
+ padding: 10px;
+}
+
+.break {
+ word-wrap: break-word;
+}
+
+#header {
+ color: #195;
+ font-size: 80px;
+ font-weight: 500;
+ line-height: 1;
+ margin: 20px 0 40px;
+}
+
+#anime {
+ height: 300px;
+ position: fixed;
+ bottom: 0px;
+ right: 0px;
+ z-index: -1;
+}
+
+#anime:hover {
+ -webkit-filter: brightness(120%);
+ filter: brightness(120%);
+}
+
+#upload {
+ background: #195;
+ color: #EEE;
+ width: 150px;
+ height: 50px;
+ display: inline-block;
+ border-radius: 3px;
+ line-height: 3;
+ border: none;
+ margin: 10px;
+}