Spaces:
Sleeping
Sleeping
Moved CSS stuff to CSS module
Browse files- css/styles.css +75 -0
css/styles.css
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
padding: 0 0em;
|
3 |
+
height: 100%;
|
4 |
+
background: #303030;
|
5 |
+
}
|
6 |
+
|
7 |
+
.sidebar-left {
|
8 |
+
float: left;
|
9 |
+
width: 10%;
|
10 |
+
}
|
11 |
+
|
12 |
+
.sidebar-left h1 {
|
13 |
+
color: white;
|
14 |
+
font-size: 16px;
|
15 |
+
padding: 0 1.5em;
|
16 |
+
}
|
17 |
+
|
18 |
+
.sidebar-left hr {
|
19 |
+
border: 2px solid white;
|
20 |
+
}
|
21 |
+
|
22 |
+
#annotations-container h2 {
|
23 |
+
color: white;
|
24 |
+
padding: 0 0.5em;
|
25 |
+
font-size: 14px;
|
26 |
+
}
|
27 |
+
|
28 |
+
#annotations-container hr {
|
29 |
+
border: 0.25px solid white;
|
30 |
+
}
|
31 |
+
|
32 |
+
#wsi-canvas {
|
33 |
+
float: left;
|
34 |
+
width: 80%;
|
35 |
+
height: 100%;
|
36 |
+
background: white;
|
37 |
+
}
|
38 |
+
|
39 |
+
.sidebar-right {
|
40 |
+
float: right;
|
41 |
+
width: 10%;
|
42 |
+
}
|
43 |
+
|
44 |
+
.sidebar-right h2 {
|
45 |
+
color: white;
|
46 |
+
padding: 0 0.5em;
|
47 |
+
font-size: 14px;
|
48 |
+
}
|
49 |
+
|
50 |
+
.sidebar-right hr {
|
51 |
+
border: 0.25px solid white;
|
52 |
+
}
|
53 |
+
|
54 |
+
.sidebar-right .position,
|
55 |
+
.sidebar-right .zoom {
|
56 |
+
color: white;
|
57 |
+
padding: 0 0.5em;
|
58 |
+
font-size: 14px;
|
59 |
+
}
|
60 |
+
|
61 |
+
.annotation-item {
|
62 |
+
color: white;
|
63 |
+
padding: 10px;
|
64 |
+
border: 1px solid white;
|
65 |
+
margin-top: 10px;
|
66 |
+
cursor: pointer;
|
67 |
+
font-size: 12px;
|
68 |
+
}
|
69 |
+
|
70 |
+
svg.a9s-annotationlayer .a9s-selection .a9s-inner,
|
71 |
+
svg.a9s-annotationlayer .a9s-annotation .a9s-inner {
|
72 |
+
stroke-width: 4;
|
73 |
+
stroke: blue;
|
74 |
+
fill: rgba(0, 0, 255, 0.4);
|
75 |
+
}
|