summaryrefslogtreecommitdiffstats
path: root/web/gui/v2/static/site/pages/holding-page-503/holding-page-503.css
blob: d331473fbe938a99954fa109f1aaa65b96233633 (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
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.overlay {
  position: absolute;
  background: linear-gradient(180deg, #00b44d 0%, #005123 100%);
  height: 100%;
  width: 100%;
}

.content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}

.logo-container {
  margin-top: 24px;
}

.content {
  margin-left: 48px;
}

.header {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  display: flex;
  align-items: center;
  color: #ffffff;
  white-space: nowrap;
}

.info {
  width: 444px;

  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;

  display: flex;
  align-items: center;

  color: #ffffff;
}

.buttons {
  display: flex;
  margin-top: 48px;
}

.button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 0px;

  width: 168px;
  height: 40px;

  border-radius: 4px;

  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.button:hover {
  opacity: 0.8;
}

.button-reload {
  background: transparent;
  border: 1px solid #ffffff;
}

.button-status {
  margin-left: 24px;
  background: #00ab44;
}