summaryrefslogtreecommitdiff
path: root/frontend/views/graph/graph.css
blob: 1bef514d51e61a665aa84805a11f6b0aaa51f0a3 (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
.graph.loading {
  padding: 1rem;
}
.graph {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: linear-gradient(
      -45deg,
      rgba(0, 0, 64, 0.2),
      rgba(128, 0, 64, 0.2)
    );
}

.box {
  width: 15rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  background: rgba(64,12,64,0.9);
  border: 2px solid #000;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.box h1,
.box h2 {
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
}
.box form label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.25rem;
}
.box input[type=text],
.box input[type=number],
.box input[type=password] {
  padding: 0.25rem;
  max-width: 100%;
  border-color: #888;
}
.box textarea {
  max-width: 100%;
  height: 5rem;
  border-color: #888;
}
.box .text.description span:first-child {
  display: none;
}