-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathcustom.css
executable file
·120 lines (105 loc) · 1.94 KB
/
custom.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
111
112
113
114
115
116
117
118
119
120
/**
* custom CSS goes here
*/
/**
* Show it is fixed to the top
*/
body {
padding-top: 4.5rem;
font-size: 14px;
}
.form-signin {
width: 100%;
max-width: 330px;
padding: 15px;
margin: auto;
}
.form-signin .checkbox {
font-weight: 400;
}
.form-signin .form-control {
position: relative;
box-sizing: border-box;
height: auto;
padding: 10px;
font-size: 16px;
}
.form-signin .form-control:focus {
z-index: 2;
}
.form-signin input[type="text"] {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
/**
* fix for DataTables issues with browsers on OSX,
* needs to be combined with the 100% width tag in the table element
*
* NOTE:
* can cause issues with long content in columns in other browsers
*/
table {
table-layout: fixed;
}
/**
* make menus scrollable
*/
.scrollable-menu {
height: auto;
max-height: 80vh;
overflow-x: hidden;
overflow-y: auto;
}
/**
* to implement sub menus within the dropdown menus
*/
.dropdown-submenu {
position: relative;
}
.dropdown-submenu>a:after {
content: "\f0da";
float: right;
border: none;
font-family: 'Font Awesome 5 Free';
font-weight: 900;
}
.dropdown-submenu>.dropdown-menu {
top: 0;
left: 100%;
margin-top: 0px;
margin-left: 0px;
}
/**
* the back-to-top button
*/
.back-to-top {
cursor: pointer;
position: fixed;
bottom: 20px;
right: 20px;
display:none;
}
.results_badge {
font-size: 1rem;
}
/**
* the copy to clipboard button
*/
#copy_to_clipboard_button {
position: absolute;
top: 0;
right: 0;
}
/**
* the output container
*/
#output_pre {
min-height: 50px;
overflow-x: auto;
}