forked from chaimeleon-eu/dataset-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
82 lines (66 loc) · 1.47 KB
/
index.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
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.app-version {
position: relative;
font-size: 50%;
margin-top: 0;
height: 100%;
display: inline-block;
}
.apps-logo {
height: 2em;
width: 2em;
}
.modal-xxl {
width: 95vw ; /* Occupy the 90% of the screen width */
max-width: 95vw;
height: 95vh; /* Occupy the 90% of the screen width */
max-height: 95vh;
}
.modal-dialog-scrollable .modal-content {
max-height: 100%;
height: 100%;
}
.modal-content {
max-height: 100%;
height: 100%;
}
.search-btn {
padding-left: 2em;
padding-right: 2em;
}
.overflow-ellipsis {
list-style-position: inside;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.pre-text {
white-space: pre-wrap;
}
.copy-success{
animation: copy-success-change 1.5s;
}
@keyframes copy-success-change {
0% { background-color: transparent; }
50% { background-color: lightgreen; }
100% { background-color: transparent; }
}
.copy-error{
animation: copy-error-change 1.5s;
}
@keyframes copy-error-change {
0% { background-color: transparent; }
50% { background-color: lightcoral; }
100% { background-color: transparent; }
}