-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
171 lines (150 loc) · 2.69 KB
/
style.css
File metadata and controls
171 lines (150 loc) · 2.69 KB
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
body {
cursor: default; /* prevents 'I' cursor over text, which would look odd on our site */
padding: 0px;
margin: 0px;
font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif;
text-align: center;
}
div, img {
padding: 0px;
margin: 0px;
}
#houseBackground {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 1;
}
#sky{
height: 100%;
background-image: url('sky.png');
background-size: contain;
background-repeat: repeat-x;
}
#house {
position: relative;
min-width: 600px;
max-width: 100%;
z-index: 2;
margin: 0px auto;
}
#rooms {
min-width: inherit;
max-width: inherit;
}
#rooms img {
display: block;
min-width: inherit;
max-width: inherit;
}
article {
position: absolute;
overflow-y: auto;
}
#roofFloat {
background-color: rgba(255, 255, 255, .6);
border-radius: 1px;
padding: 5px 15px;
top: 7%;
left: 55%;
width: 30%;
max-height: 20%;
text-align: center;
}
#bedroomFloat {
background-color: rgba(255, 255, 255, .6);
border-radius: 1px;
padding: 5px 15px;
top: 37%;
left: 45%;
max-height: 15%;
width: 50%;
}
#basementFloat {
top: 73%;
left: 50%;
width: 60%;
max-height: 25%;
margin-left: -30%;
color: #fff;
font-size: 90%;
}
#basementFloat h2 {
text-align: left;
margin-bottom: 0px;
}
#basementFloat hr {
width: 30%;
margin-top: 25px;
}
#feedbackScreen {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background-color: rgba(0, 0, 0, .7);
z-index: 10;
display: none;
}
#feedbackBg {
color: #fff;
background-color: #0c0a0a;
width: 0px;
height: 0px;
overflow-x: hidden;
overflow-y: auto;
margin: auto;
border-radius: 20px;
box-shadow: inset 1px 1px 12px rgba(255, 255, 255, 1), 3px 3px 6px 1px #000;
-webkit-transition: height 2s, width 2s, margin 2s;
transition: height 2s, width 2s, margin 2s;
}
#feedbackBg h3 {
text-align: center;
}
#feedbackForm{
margin: auto;
width: 340px;
display: block;
}
#buttonEscape {
color: #fff;
float: right;
background-color: #0c0a0a;
margin-top: 10px;
margin-right: 10px;
border-radius: 100%;
/*box-shadow: 2px 2px 1px 0px rgba(255, 255, 255, 1), inset 0 0 0 #fff;*/
}
#buttonFeedback {
text-align: center;
}
#badges {
padding: 0px;
width: 170px;
margin: 5px auto 0px auto;
}
#feedbackSuggest {
position: fixed;
height: 0px;
overflow: hidden;
width: 100px;
color: #0c0a0a;
right: 100px;
bottom: 0px;
background-color: #fff;
text-align: center;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
font-size: 15pt;
-webkit-transition: height .9s ease-in-out;
transition: height .8s ease-in-out;
z-index: 20;
padding-top: 5px;
}