-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (58 loc) · 1.1 KB
/
style.css
File metadata and controls
67 lines (58 loc) · 1.1 KB
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
body {
background-color: rgb(240, 203, 158);
}
#container {
width: 99vw;
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
gap: 20vw;
}
#db-visualization {
background-color: white;
display: grid;
width: fit-content;
grid-template-columns: auto auto auto auto;
background-color: rgb(182, 219, 255);
padding: 5px;
}
#db-visualization > p {
text-align: center;
font-weight: bold;
font-size: 24px;
}
#db-visualization > div {
padding: 10px;
text-align: center;
background-color: white;
font-size: 24px;
}
#transactions-list {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2vh;
}
#transactions {
height: 60vh;
overflow: scroll;
background-color: rgb(182, 219, 255);
padding: 17px;
box-sizing: content-box;
text-align: center;
min-width: 20vw;
}
.heading {
font-weight: bold;
font-size: 36px;
}
#refresh-button {
font-size: 24px;
}
#error-text {
font-weight: bold;
text-align: center;
font-size: 24px;
}