-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyles.css
59 lines (54 loc) · 961 Bytes
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
overflow: hidden;
font-family: Verdana, sans-serif;
}
#viewer-container {
position: fixed;
top: 0;
left: 0;
outline: none;
width: 100%;
height: 100%;
}
#load-ifc-button {
position: absolute;
background-color: #ff0072;
float: left;
border: none;
width: 500px;
outline: none;
cursor: pointer;
padding: 6px 10px;
font-size: 12px;
color: white;
z-index: 1;
}
#query-box {
background-color: green;
border: none;
width: 500px;
outline: none;
padding: 6px 10px;
font-size: 12px;
color: white;
position: relative;
z-index: 1;
margin-top: 40px;
}
#results-box {
background-color: green;
border: none;
width: 500px;
outline: none;
padding: 6px 10px;
font-size: 12px;
color: white;
position: relative;
z-index: 1;
margin-top: 10px;
}