forked from hasura/graphql-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
132 lines (109 loc) · 1.89 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
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
121
122
123
124
125
126
127
128
129
130
131
132
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px; /* Margin bottom by footer height */
}
.footer {
bottom: 60px;
width: 100%;
height: 60px; /* Set the fixed height of the footer here */
color: rgb(226, 226, 226) !important;
font-size: 0.8em;
}
.footer a {
color: rgb(226, 226, 226) !important;
}
.footer .hasura-logo a:hover {
text-decoration: none;
}
.footer .hasura-logo img {
height: 30px;
}
.footer .footer-small-text {
font-size: 0.7em;
padding-top: 5px;
}
.main {
height: calc(100vh - 60px);
background-color: #467FD7;
color: rgb(226, 226, 226);
}
.main-content {
text-align: center;
}
.main-content img#arch {
width: 100%;
}
.waiting-text {
padding-top: 10px
}
div .error {
padding-top: 20px;
}
#arch {
padding: 20px;
}
.notifications {
width: 100%;
}
.notifications ul {
max-height: 350px;
overflow: auto;
}
.try-again {
padding: 10px;
}
.loader {
height: 4px;
width: 100%;
position: relative;
overflow: hidden;
background-color: #ddd;
}
.loader:before{
display: block;
position: absolute;
content: "";
left: -200px;
width: 200px;
height: 4px;
background-color: #2980b9;
animation: loading 2s linear infinite;
}
@keyframes loading {
from {left: -200px; width: 30%;}
50% {width: 30%;}
70% {width: 70%;}
80% { left: 50%;}
95% {left: 120%;}
to {left: 100%;}
}
.center-form input {
text-align: center;
}
.search-results {
max-height: 250px;
min-height: 250px;
overflow: auto;
}
div#search-box {
justify-content: center;
}
div.ais-search-box--magnifier {
margin-top: 6px;
}
button.ais-search-box--reset {
margin-top: 6px;
}
img.algolia_image {
height: 20px;
}
.algolia_search_attribution {
font-size: 0.8em;
}
.hasura-logo img {
height: 30px;
margin-bottom: 12px;
}