summaryrefslogtreecommitdiff
path: root/public/assets
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-06-29 01:18:06 +0200
committerJules Laplace <julescarbon@gmail.com>2017-06-29 01:18:06 +0200
commit50904f4b010c417d558174005a7b4c5868e7d8d9 (patch)
tree2fb9bad10e09ff66ccc5313289a62367843326a3 /public/assets
parenta190d638c608f4352e3f01d72ed419a5ab5129ed (diff)
sketch folder stuff
Diffstat (limited to 'public/assets')
-rw-r--r--public/assets/css/css.css51
1 files changed, 51 insertions, 0 deletions
diff --git a/public/assets/css/css.css b/public/assets/css/css.css
new file mode 100644
index 0000000..e64600e
--- /dev/null
+++ b/public/assets/css/css.css
@@ -0,0 +1,51 @@
+html,body {
+ margin: 0;
+ padding: 0;
+ width: 100%;
+ height: 100%;
+ font-family: sans-serif;
+}
+.header {
+ width: 100%;
+ padding: 5px;
+ background: black;
+ color: white;
+}
+.modal {
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ top: 0; left: 0;
+ background: rgba(0,0,0,0.9);
+ display: none;
+}
+.modal.visible {
+ display: block;
+}
+.modal .inner {
+ padding: 10px;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate3d(-50%,-50%,0);
+ background: white;
+ border-radius: 4px;
+}
+
+label {
+ width: 150px;
+ display: inline-block;
+}
+input {
+ width: 200px;
+ font-size: 15px;
+ border: 1px solid #888;
+ font-family: sans-serif;
+ padding: 5px;
+}
+textarea {
+ width: 350px;
+ padding: 5px;
+ font-size: 15px;
+ border: 1px solid #888;
+} \ No newline at end of file