-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstylesheet.css
81 lines (64 loc) · 1.2 KB
/
stylesheet.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
/* hotspot styling */
.hotspot{
width: 20px;
height: 20px;
border-radius: 10px;
border: none;
background-color: blue;
}
.annotation{
width: auto;
background-color: #888888;
position: absolute;
transform: translate(10px, 10px);
border-radius: 10px;
padding: 10px;
text-align: left;
}
.hotspot.selected{
background-color: red;
}
.hotspot:not(.selected) > .annotation{
display: none;
}
/* not important document styling */
#displayblocks{
display: flex;
justify-content: center;
}
#modelblock{
width: 80vw;
height: 80vh;
margin: 10vh 0px 0px 0px;
}
#formblock{
width: 40vw;
margin: 10vh 0px 0px 0px;
height: 80vh;
background-color: white;
}
.center{
display: flex;
justify-content: center;
}
.btn{
background-color: #008CBA;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 50px 2px 4px 2px;
cursor: pointer;
}
input[type=text], select {
width: 80%;
padding: 12px 20px;
margin: 50px 10% 0px 10%;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}