-
Notifications
You must be signed in to change notification settings - Fork 12
/
3DObjectViewer.css
151 lines (151 loc) · 3.19 KB
/
3DObjectViewer.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
body
{
background-color:#303030;
text-align:center;
overflow:hidden;
margin:0;
padding:0;
-webkit-user-select:none;
-moz-user-select:none;
user-select:none;
}
.content
{
width:100%;
height:100%;
left:0;
right:0;
top:0;
bottom:0;
margin:auto;
max-width:100%;
max-height:100%;
overflow:hidden;
text-align:center;
}
#container
{
width:100%;
height:100%;
margin-bottom:-10px;
overflow:hidden;
}
#container2
{
position:absolute;
text-align:left;
font-family:Arial;
font-size:15px;
color:white;
text-shadow:0 0 1px #000000,0 0 5px #000000;
left:5px;
top:8px;
margin-left:5px;
z-index:999;
cursor:default;
display:none;
}
.container3
{
position:absolute;
bottom:0px;
left:0px;
right:0px;
float:left;
background-color:#F2F2F2;
border-top:1px solid silver;
font-family:Arial;
font-size:13px;
line-height:13px;
margin-left:0px;
padding-right:10px;
padding-top:2px;
padding-bottom:2px;
height:30px;
z-index:999;
}
.leftitem
{
float:left;
margin-left:2px;
}
.buttonChanger
{
font-size:13px;
font-family:Arial;
line-height:13px;
color:black;
text-align:left;
}
.separator
{
background-color:white;
height:1px;
border:0;
}
#modelOBJ
{
font-size:13px;
font-family:Arial;
line-height:13px;
height:30px;
color:black;
text-align:left;
border:0 silver solid;
outline:none;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
}
#modelOBJ:disabled
{
font-size:13px;
font-family:Arial;
line-height:13px;
height:30px;
color:grey;
text-align:left;
border:0 silver solid;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
}
.loading_splash
{
position:fixed;
left:0;
top:0;
right:0;
bottom:0;
background-color:rgba(0, 0, 0, 0.7);
display:none;
z-index:9999;
}
.loading_splash_container
{
position:fixed;
width:64px;
height:64px;
left:0;
right:0;
top:0;
bottom:0;
margin:auto auto;
border:0;
}
.lds-spinner{color:white;display:inline-block;position:relative;width:64px;height:64px;}
.lds-spinner div{transform-origin:32px 32px;animation:lds-spinner 1.2s linear infinite;}
.lds-spinner div:after{content:" ";display:block;position:absolute;top:3px;left:29px;width:5px;height:14px;border-radius:20%;background:white;}
.lds-spinner div:nth-child(1){transform:rotate(0deg);animation-delay:-1.1s;}
.lds-spinner div:nth-child(2){transform:rotate(30deg);animation-delay:-1s;}
.lds-spinner div:nth-child(3){transform:rotate(60deg);animation-delay:-0.9s;}
.lds-spinner div:nth-child(4){transform:rotate(90deg);animation-delay:-0.8s;}
.lds-spinner div:nth-child(5){transform:rotate(120deg);animation-delay:-0.7s;}
.lds-spinner div:nth-child(6){transform:rotate(150deg);animation-delay:-0.6s;}
.lds-spinner div:nth-child(7){transform:rotate(180deg);animation-delay:-0.5s;}
.lds-spinner div:nth-child(8){transform:rotate(210deg);animation-delay:-0.4s;}
.lds-spinner div:nth-child(9){transform:rotate(240deg);animation-delay:-0.3s;}
.lds-spinner div:nth-child(10){transform:rotate(270deg);animation-delay:-0.2s;}
.lds-spinner div:nth-child(11){transform:rotate(300deg);animation-delay:-0.1s;}
.lds-spinner div:nth-child(12){transform:rotate(330deg);animation-delay:0s;}
@keyframes lds-spinner{0%{opacity:1;}100%{opacity:0;}}