-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathvGmain.css
More file actions
112 lines (96 loc) · 1.65 KB
/
Copy pathvGmain.css
File metadata and controls
112 lines (96 loc) · 1.65 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
104
105
106
107
108
109
110
111
112
img {
display: inline;
}
h2 {
display: inline;
}
h3 {
margin: 5px;
}
body {
background-color: rgb(40,44,40);
color: rgb(176,157,93);
}
svg {
width: 100%;
background-color: rgb(54,54,54);
color: rgb(176,157,93);
border: solid 2px rgb(176,157,93);
border-radius: 3px;
box-shadow: 1px 1px 5px black;
}
input {
margin: 5px;
}
button {
background-color: rgb(54,54,54);
color: rgb(176,157,93);
margin: 10px;
margin-left: 0px;
padding: 2px;
width: 100px;
height: 40px;
border: solid 2px rgb(176,157,93);
border-radius: 3px;
box-shadow: 1px 1px 5px black;
}
.links line {
stroke: #efcfb6;
stroke-opacity: 0.6;
}
.nodes circle {
stroke: #efcfb6;
stroke-width: 1.5px;
}
text {
font-family: sans-serif;
font-size: 10px;
fill: rgb(176,157,93);
}
.cont {
width: 100%;
height: 500px;
display: inline-flex;
align-content: flex-start;
display: flex;
flex-direction: row;
background-color: rgb(54,54,54);
color: rgb(176,157,93);
border: solid 2px rgb(176,157,93);
border-radius: 3px;
box-shadow: 1px 1px 5px black;
overflow-y: scroll;
}
.contV {
align-content: space-around;
display: flex;
flex-direction: column;
background-color: rgb(54,54,54);
color: rgb(176,157,93);
}
.container {
display: inline-flex;
align-content: flex-start;
display: flex;
flex-direction: row;
}
.item {
background-color: rgb(54,54,54);
padding: 5px;
margin: 10px;
border-radius: 5px;
box-shadow: 1px 1px 2px black;
justify-content: flex-start;
margin: auto;
}
.twothirdleft {
width:66%;
}
.onethirdright {
width: 33%;
margin-left: 5px;
}
.link {
text-decoration: underline;
cursor: pointer;
}