forked from soom1017/cti-stix-visualization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.css
193 lines (160 loc) · 3.19 KB
/
application.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
@font-face {
font-family: "notion-mono-regular";
src: url("./fonts/CookieRunFont_TTF/CookieRun Bold.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "notion-mono-bold";
src: url("./fonts/Static/iAWriterMonoS-Bold.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "notion-mono-ital";
src: url("./fonts/Static/iAWriterMonoS-Italic.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "notion-mono-boldital";
src: url("./fonts/Static/iAWriterMonoS-BoldItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
body {
margin: 0;
/* font-family: "Helvetica", sans-serif; */
font-family: "notion-mono-regular", sans-serif;
}
#top-header-bar
{
background-color: #f7f7f7;
margin-bottom: 10px;
padding: 20px;
}
#top-header-bar h1
{
font-size: 36px;
font-weight: normal;
display: inline;
}
#top-header-bar a
{
float: right;
}
#canvas {
border: solid 1px black;
width: 100%;
height: 600px;
overflow: auto;
border-radius: 10px;
box-shadow: 3px 3px 3px rgba(0, 0, 0, .3);
}
#uploader {
text-align: center;
line-height: 1;
font-size: 36px;
}
#uploader a {
font-size: 20px;
}
#chosen-files {
margin-left: 15px;
font-size: 24px;
color: #333;
}
#canvas-wrapper {
margin: 0 10px 0 10px;
float: left;
width: 60%;
}
.sidebar {
width: 34%;
display: inline-block;
vertical-align: top;
margin-bottom: 10px;
padding: 25px;
background-color: #f7f7f7;
overflow: auto;
border-radius: 10px;
box-shadow: 3px 3px 3px rgba(0, 0, 0, .3);
}
.sidebar h2 {
font-weight: normal;
text-align: center;
}
#legend-content {
width: 100%;
border-collapse: collapse;
}
#legend-content img {
vertical-align: middle;
margin-right: 0.5em;
}
#legend-content td {
width: 50%;
}
#legend-content .typeHidden {
font-style: italic;
color: gray;
}
.selected-object-object-content {
margin-left: 2em; /* affects indentation of object properties */
}
.selected-object-prop-name {
color: purple;
margin-right: 0.5em; /* space out prop name from its value. */
}
.selected-object-list {
padding-left: 2em; /* affects indentation of list items */
margin: 0; /* snug lists up with what's above/below them */
list-style: none; /* drop the list item numbering */
}
.selected-object-text-value {
color: darkblue;
}
.selected-object-text-value-ref {
color: lightblue;
text-decoration: underline;
cursor: pointer;
}
/* If a reference is to an object which is not in the graph */
.selected-object-text-value-ref-dangling {
color: red;
text-decoration: underline;
cursor: not-allowed;
}
.selected-object-nontext-value {
color: orange;
}
.list-view-item {
cursor: pointer;
}
.list-view-selected {
background-color: lightgray;
}
#paste-area-stix-json {
height: 25em;
width: 40em;
}
#paste-area-custom-config {
height: 35em;
width: 40em;
}
.linkish:hover {
color: blue;
cursor: pointer;
}
.hidden {
display: none;
}
#search-input {
width: 150px;
height: 15px;
}
#suggestions {
width: 150px;
height: 100px;
overflow: auto;
}