-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (79 loc) · 1.16 KB
/
style.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
body {
height: 100%;
width: 100%;
margin: 0px;
}
#container {
display: flex;
justify-content: space-between;
height: 100vh;
width: 100%;
}
#authors {
flex: 1 1 30vw;
display: flex;
margin: 10px;
flex-direction: column;
justify-content: space-between;
}
#logs {
flex: 1;
display: flex;
justify-content: space-between;
}
.log {
display: flex;
margin: 10px;
flex-direction: column;
}
nama-peer {
flex: 0;
}
nama-log-viz {
flex: 0 0 300px;
border: 3px solid gray;
border-radius: 5%;
}
#document {
flex: 1 1 40vw;
display: flex;
margin: 10px;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
#document-graph {
border: 3px solid gray;
border-radius: 5%;
flex: 1 1 80vw;
width: 90%;
}
nama-graph-viz {
height: 100%;
width: 100%;
}
#go {
font-size: x-large;
}
#controls {
flex: 1 1 30vw;
display: flex;
margin: 10px;
flex-direction: column;
}
@media screen and (max-width: 80rem) {
#container {
flex-direction: column;
width: 100%;
}
#document-graph {
height: 600px;
width: 100%;
}
h1 {
font-size: 3rem;
}
p {
font-size: 1.2rem;
}
}