aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/public/css/main.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal-server/public/css/main.css')
-rw-r--r--src/internal-server/public/css/main.css72
1 files changed, 72 insertions, 0 deletions
diff --git a/src/internal-server/public/css/main.css b/src/internal-server/public/css/main.css
new file mode 100644
index 000000000..b20b67922
--- /dev/null
+++ b/src/internal-server/public/css/main.css
@@ -0,0 +1,72 @@
1input {
2 margin-bottom: 1rem;
3 width: 100%;
4 padding: 0.5rem;
5}
6
7button,
8.button {
9 display: flex;
10 overflow: hidden;
11 padding: 12px 12px;
12 cursor: pointer;
13 width: 100%;
14 -webkit-user-select: none;
15 -moz-user-select: none;
16 -ms-user-select: none;
17 user-select: none;
18 @media (prefers-reduced-motion: no-preference) {
19 transition: all 150ms linear;
20 }
21 text-align: center;
22 white-space: nowrap;
23 text-decoration: none !important;
24 text-transform: none;
25 text-transform: capitalize;
26 color: #fff !important;
27 border: 0 none;
28 border-radius: 4px;
29 font-size: 13px;
30 font-weight: 500;
31 line-height: 1.3;
32 -webkit-appearance: none;
33 -moz-appearance: none;
34 appearance: none;
35 justify-content: center;
36 align-items: center;
37 flex: 0 0 160px;
38 box-shadow: 2px 5px 10px #e4e4e4;
39 color: #ffffff;
40 background: #161616;
41}
42
43#dropzone {
44 width: 100%;
45 height: 30vh;
46 background-color: #ebebeb;
47
48 display: flex;
49 align-items: center;
50 justify-content: center;
51 text-align: center;
52
53 cursor: pointer;
54}
55
56#dropzone p {
57 font-size: 0.85rem;
58}
59
60#files {
61 display: none;
62}
63
64.alert {
65 background-color: #e7a8a6;
66 padding: 0.8rem;
67 margin-bottom: 1rem;
68}
69
70td {
71 word-break: break-all;
72}