forked from r03ert0/reorient
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathreorient.css
61 lines (61 loc) · 925 Bytes
/
reorient.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
body {
background: #222;
}
#viewer {
display: inline-block;
border: thin solid black;
}
#3dcontainer {
position: relative;
display: inline-block;
padding: 20px;
}
#miny {
transform: translate( -100% , -100%);
}
#maxy {
transform: translate( -100% , 0);
}
#maxx {
transform: translate( -100% , 0);
}
.overlay {
display: none;
}
#tools,
#saveNifti,
#loadSelection,
#saveSelection,
#loadMatrix,
#appendMatrix,
#saveMatrix,
#resetMatrix,
#resetSelection,
#info {
display: none;
}
#buttons {
width: 200px;
}
#buttons.init {
position: absolute;
top:50%;
left:50%;
transform: translate( -50%, -50% );
text-align: center;
width: 80%;
height: 80%;
}
#footer {
font-family: "Montserrat", sans-serif;
font-size: 12px;
font-weight: 200;
line-height:1.4;
color: white;
position: absolute;
bottom:2%;
left:50%;
transform: translate( -50%, 0% );
text-align: center;
width: 80%;
}