-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (78 loc) · 1.62 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
body {
text-align: center;
background-color: black;
color: white;
}
#selectContainer {
position: relative;
display: flex;
gap: 10px;
/* flex-direction: column; */
justify-content: center;
align-items: center;
height: 2.5em;
/* padding: 10px; */
font-size: 15px;
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;
}
#selectFolder, #selectFile {
position: relative;
display: inline-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;
}
#selectButton {
border: none;
width: auto;
background: blue;
padding: 7px 17px;
border-radius: 5px;
color: white;
font-weight: bold;
cursor: pointer;
transition: background .2s ease-in-out;
}
#selectButton:hover {
background: rgb(0, 69, 0);
}
tfoot input {
background-color: black;
color: white;
width: 100%;
padding: 3px;
border-radius: 5px;
box-sizing: border-box;
}
.dt-button-collection {
background-color: #212529 !important;
}
/* dataTables Search input box */
.dataTables_filter {
position: relative;
}
.dataTables_filter input {
width: 100%;
background: black;
box-shadow: 0 0 3px #ffffff, 0 10px 15px #336633 inset;
}
.fa-icon {
color: white;
position: absolute;
top: 5px;
right: 0;
}