forked from ibimmates/IfcViewer-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
122 lines (103 loc) · 1.73 KB
/
styles.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
html, body {
overflow: hidden;
}
.hidden {
visibility: collapse;
}
.icon {
max-width: 20px;
max-height: 20px;
margin: auto;
}
.text {
color: rgb(173, 173, 173);
border-bottom: 1px solid rgb(104, 104, 104);
padding: 0.6em 0.6em 0.6em 1em;
}
.text:hover {
background-color: #3e4147;
}
.text-title {
color: rgb(236, 236, 236);
}
.basic-button {
background-color: #202225;
width: 100%;
height: 40px;
border: none;
text-align: center;
}
.basic-button:hover {
background-color: #2a2d33;
}
.side-menu {
z-index: 1;
position: fixed;
background-color: #36393F;
height: 100vh;
}
.side-sub-menu {
width: 100%;
height: inherit;
margin: 2px;
}
.ifcjs-dimension-preview {
width: 2rem;
height: 2rem;
background-color: rebeccapurple;
border-radius: 1rem;
opacity: 0.3;
}
#viewer-container {
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;
}
#side-menu-left {
width: 40px;
}
#side-menu-right {
right: 0;
width: 300px;
}
.loading-overlay {
position: absolute;
z-index: 2;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #f1f1f150;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.loading-progress {
color: white;
}
.hidden {
display: none;
}
.properties-panel {
position: absolute;
width: 25vw;
height: 70vh;
top: 2vw;
right: 4vh;
background: white;
opacity: 0.7;
overflow-y: scroll;
overflow-x: scroll;
padding: 15px;
}
.properties-table {
font-size: x-small;
}