From ea03e3766efffeb5e6b9bb90f566e64bf44640f3 Mon Sep 17 00:00:00 2001 From: vantezzen Date: Wed, 4 Sep 2019 09:59:25 +0200 Subject: Add user dashboard --- public/css/main.css | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 public/css/main.css (limited to 'public/css') diff --git a/public/css/main.css b/public/css/main.css new file mode 100644 index 0000000..a1c5653 --- /dev/null +++ b/public/css/main.css @@ -0,0 +1,69 @@ +input { + margin-bottom: 1rem; + width: 100%; + padding: 0.5rem; +} + +button, .button { + display: flex; + overflow: hidden; + padding: 12px 12px; + cursor: pointer; + width: 100%; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + transition: all 150ms linear; + text-align: center; + white-space: nowrap; + text-decoration: none !important; + text-transform: none; + text-transform: capitalize; + color: #fff !important; + border: 0 none; + border-radius: 4px; + font-size: 13px; + font-weight: 500; + line-height: 1.3; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + justify-content: center; + align-items: center; + flex: 0 0 160px; + box-shadow: 2px 5px 10px #e4e4e4; + color: #FFFFFF; + background: #161616; +} + +#dropzone { + width: 100%; + height: 30vh; + background-color: #ebebeb; + + display: flex; + align-items: center; + justify-content: center; + text-align: center; + + cursor: pointer; +} + +#dropzone p { + font-size: 0.85rem; +} + +#files { + display: none; +} + +.alert { + background-color: #e7a8a6; + padding: 0.8rem; + margin-bottom: 1rem; +} + +td { + word-break: break-all; +} \ No newline at end of file -- cgit v1.2.3-54-g00ecf