-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmanagement.css
More file actions
62 lines (59 loc) · 1.79 KB
/
management.css
File metadata and controls
62 lines (59 loc) · 1.79 KB
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
.main-content { margin-top: 20px; }
pre {
background-color: #f4f4f4; border: 1px solid #ddd;
border-left: 3px solid #f36d33; color: #666;
font-family: monospace; font-size: 14px;
line-height: 1.4; padding: 0.5em 1em;
overflow: auto; word-wrap: break-word;
}
.card, .compact-row { margin-bottom: 10px; }
.card-title { font-size: 16px; }
.card-text, .collateral-inputs, .collateral-buttons, .nav-tabs { margin-top: 10px; }
.collateral-buttons button { margin-right: 10px; }
.toast-container {
position: fixed; bottom: 1rem; right: 1rem; z-index: 1060;
}
.small-label {
font-size: 12px; color: grey; margin-left: 10px; display: inline-block; vertical-align: middle;
}
.input-container {
display: flex; align-items: center;
}
.question-mark {
font-size: 14px; color: gray; margin-left: 5px; cursor: help; position: relative;
}
.question-mark:hover .custom-tooltip {
visibility: visible; opacity: 1;
}
.custom-tooltip {
visibility: hidden; width: 200px; background-color: #333; color: #fff; text-align: center;
border-radius: 6px; padding: 5px; position: absolute; z-index: 1; bottom: 125%; left: 50%;
margin-left: -100px; opacity: 0; transition: opacity 0.3s;
}
.custom-tooltip::after {
content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px;
border-width: 5px; border-style: solid; border-color: #333 transparent transparent transparent;
}
.nav{ margin-bottom: 1rem; }
.loading-bar {
display: none;
height: 2px;
background-color: #007bff;
animation: loading 1s infinite;
}
@keyframes loading {
0% { width: 0%; }
50% { width: 50%; }
100% { width: 100%; }
}
#summariesResult {
margin-top: 20px;
}
#peginSummary table,
#pegoutSummary table {
margin-bottom: 0;
}
#peginSummary th,
#pegoutSummary th {
width: 60%;
}