-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (98 loc) · 2.02 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
text-align: center;
background-color: black;
color: white;
}
#dropContainer {
position: relative;
display: flex;
gap: 10px;
/* flex-direction: column; */
justify-content: center;
align-items: center;
height: 3em;
/* padding: 10px; */
font-size: 20px;
font-weight: bold;
border-radius: 10px;
border: 2px dashed #696969;
color: green;
cursor: pointer;
transition: background .2s ease-in-out, border .2s ease-in-out, color .2s ease-in-out;
}
#dropContainer:hover {
background: rgb(169, 169, 169);
color: red;
border-color: black;
}
#dropContainer:hover #dropTitle {
color: black;
}
#dropTitle {
color: white;
font-size: 20px;
font-weight: bold;
text-align: center;
transition: color .2s ease-in-out;
}
input[type=file] {
width: 42.0em;
max-width: 100%;
color: black;
font-weight: bold;
padding: 5px;
background: white;
border-radius: 10px;
border: 1px solid rgb(69, 0, 69);
}
input[type=file]::file-selector-button {
margin-right: 10px;
border: none;
background: blue;
padding: 10px 20px;
border-radius: 10px;
color: white;
font-weight: bold;
cursor: pointer;
transition: background .2s ease-in-out;
}
input[type=file]::file-selector-button:hover {
background: rgb(0, 69, 0);
}
#selectFile {
position: relative;
display: flex;
width: auto;
text-overflow: '';
border-color: white;
outline-color: white;
font: inherit;
padding: 5px;
background: rgb(69, 0, 69);
color: white;
border-radius: 0.25em;
box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: background .2s ease-in-out, border .2s ease-in-out, color .2s ease-in-out;
/* option {
color: inherit;
} */
}
#selectFile:hover {
background: rgb(0, 69, 0);
}
.dt-button-collection {
background-color: black !important;
border-color: white !important;
}
.ui-state-default {
background-color: rgb(51, 51, 51) !important;
}
tfoot input {
background: black;
color: white;
width: 100%;
padding: 3px;
border-radius: 5px;
box-sizing: border-box;
}