-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (69 loc) · 1.33 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
.grid {
width: 100%;
height: 100%;
}
.buttonloader {
border: 3px solid #f3f3f3;
/* Light grey */
border-top: 3px solid #3498db;
/* Blue */
border-radius: 50%;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.navbar-dark .navbar-nav .nav-link {
color: rgba(255, 255, 255, 100) !important;
}
.dropdown :hover {
color: rgba(255, 255, 255, 255) !important;
}
.returnGrid {
position: fixed;
bottom: 0px;
width: 100%;
/* Set the fixed height of the footer here */
height: 300px;
border-top: 1px solid;
border-color: darkgray;
overflow-y: auto !important;
}
.statusBar {
position: fixed;
bottom: 0px;
width: 100%;
height: 40px;
background-color: lightgrey;
}
.dropdown-item:focus,
.dropdown-item:hover {
background-color: #007bff;
}
@media (min-width: 768px) {
.modal-xl {
width: 90%;
max-width:1200px;
}
}
.loadingAlert{
white-space: nowrap !important;
display: inline !important;
}
.databaseConnectionField{
background-color: #ebf5f5;
border-radius: 5px;
}
.localSystemField{
background-color: #fff7e2;
border-radius: 5px;
}
.gitHubField{
background-color: #e6fde6;
border-radius: 5px;
}