summaryrefslogtreecommitdiffstats
path: root/web/gui/static/splash.css
blob: f20b6ac41a7410229693e1cce2aed21acb4a2139 (plain)
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
:root {
  --main-bg: #080a0a;
  --font-color: #b7c2c2;
  --primary-green: #00ab44;
  --column-gap: 8px;
  --logo-color: #f1fff7;
  --button-text-green: #00cd51;
  --border-color: #536775;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  background: var(--main-bg);
  color: var(--font-color);
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
}
iframe.hidden {
  display: none;
}
#agent-splash-screen a:link,
#agent-splash-screen a:visited,
#agent-splash-screen a:active {
  font-size: 12px;
  color: var(--primary-green);
  font-weight: normal;
}
#agent-splash-screen .hero {
  position: relative;
  display: flex;
  width: 500px;
  margin: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: calc(var(--column-gap) * 4);
  text-align: center;
  margin: 120px auto 32px;
}
#agent-splash-screen .logo-container {
  position: relative;
}
#agent-splash-screen .logo-blur {
  position: absolute;
  width: 315px;
  height: 315px;
  left: -100%;
  top: -100%;
  filter: blur(30px);
  pointer-events: none;
}
#agent-splash-screen .logo {
  filter: drop-shadow(-6px -2px 20px rgba(255, 255, 255, 0.6)) blur(0.7px);
}

#agent-splash-screen.loading .logo {
  animation: glow 800ms linear infinite alternate;
}
#agent-splash-screen .headings {
  display: flex;
  flex-direction: column;
  gap: calc(var(--column-gap) * 2);
  height: 104px;
}
#agent-splash-screen .title {
  font-size: 22px;
  line-height: 26px;
  font-weight: 200;
  margin: 0;
}
#agent-splash-screen .subtitle {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
#agent-splash-screen .flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
#agent-splash-screen .flex-column {
  flex-direction: column;
}
#agent-splash-screen a.button {
  appearance: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
#agent-splash-screen a.button svg {
  width: 22px;
  height: 16px;
}
#agent-splash-screen a.button.ghost {
  background: transparent;
  color: var(--button-text-green);
  padding: 4px 6px;
  font-size: 14px;
  font-weight: 200;
}
#agent-splash-screen a.button.ghost:hover {
  background: #00441b;
}

#agent-splash-screen a.button.large {
  background: transparent;
  border: 1px solid var(--primary-green);
  font-size: 18px;
  padding: 12px;
  color: var(--button-text-green);
  width: 100%;
  font-weight: 200;
}
#agent-splash-screen a.button.large:hover {
  background: #00441b;
}
#agent-splash-screen .loading-message .subtitle {
  display:none;
}
#agent-splash-screen.loading .loading-message .subtitle {
  display:block;
  height: 56px;
}
#agent-splash-screen .loading-message .flex-center {
  display: none;
}
#agent-splash-screen.error .loading-message .flex-center {
  display: flex;
  margin: 8px auto;
}
#agent-splash-screen .loading-message table {
  display: none;
  border-collapse: collapse;
  border: 1px solid var(--border-color);
  color: var(--font-color);
}
#agent-splash-screen.table .loading-message table {
  display: table;
  margin: 8px auto;
}
#agent-splash-screen .dashboard-buttons {
  width: 320px;
  margin: auto;
  gap: 24px;
}
#agent-splash-screen .terms {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
}
.green {
  color: var(--primary-green);
}
@keyframes glow {
  from {
    filter: drop-shadow(-6px -2px 20px rgba(255, 255, 255, 0.9)) blur(0.9px);
  }
  to {
    filter: drop-shadow(-6px -2px 20px rgba(255, 255, 255, 0.3)) blur(0.4px);
  }
}