-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
104 lines (89 loc) · 1.86 KB
/
styles.css
File metadata and controls
104 lines (89 loc) · 1.86 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
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
body {
text-align: center;
font-family: Sans-serif;
margin: 0;
}
.graph-data {
position: absolute;
top: 0;
/* padding: 5px; */
color: grey;
display: flex;
}
ul {
list-style-type: none;
display: flex;
flex-direction: row;
padding-left: 0pt;
}
.modal-bg {
position: fixed;
width: 100%;
height: 100vh;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
visibility: hidden;
opacity: 0;
transition: visibility 0s, opacity 0.5s;
}
.bg-active {
visibility: visible;
opacity: 1;
}
h2 {
color: black;
}
.modal {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
position: relative;
background-color: white;
width: auto;
height: auto;
display: flex;
justify-content: space-around;
/* justify-content: center; */
align-items: center;
justify-content: center;
flex-direction: column;
border-radius: 10px;
padding: 10px;
}
.modal-close {
position: absolute;
top: 10px;
right: 10px;
font-weight: bold;
color: black;
cursor: pointer;
}
.syntax {
white-space: pre-wrap;
display: flex;
justify-content: center;
align-content: center;
flex-direction: column;
background-color: rgb(158, 167, 176);
color: black;
/* margin: auto; */
/* position: absolute; */
border-radius: 10px;
height: auto;
width: auto;
text-align: justify;
padding:10px;
margin-bottom: 10px;
/* padding-left: 100px;
padding-right: 100px; */
/* margin:auto; */
}
.node-label {
font-size: 12px;
padding: 1px 4px;
border-radius: 4px;
background-color: rgba(0, 0, 0, 0.5);
user-select: none;
}