-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
153 lines (138 loc) · 3.34 KB
/
style.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
152
153
/* street view */
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
position: fixed;
}
#street-view {
height: 90%;
position: fixed;
z-index: 1;
}
#stack-top-right-center{
float: right;
}
/* align the artwork on top of street view*/
#art-sample {
position: absolute;
top: 20%;
left: 780px;
z-index: 99;
height: 50%;
width: 50%;
display: none;
}
#loci-buttons{
position: absolute;
top: 20%;
left: 95%;
z-index:99;
display: block;
}
/* Add a black background color to the top navigation */
.topnav {
background-color: #fff;
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: right;
color: #000;
text-align: center;
padding: 14px 30px;
text-decoration: none;
font-size: 14px;
font-family: Helvetica Neue
}
/* Style the Project Title Header */
.project-header a{
float: left;
color: #000;
text-align: center;
padding: 10px 30px;
text-decoration: none;
font-size: 18px;
font-family: Helvetica Neue;
font-weight: bold;
}
/* body-content */
.body-content {
float: center;
color: #000;
text-align: center;
padding: 75px;
text-decoration: none;
font-size: 14px;
font-family: Helvetica Neue;
}
/*<div class="stack-top-right-center">
<button class="weather-btn"></button>
</div>*/
.sound-btn {
background-image: url(https://github.com/turingtestaishni/projectloci.github.io/tree/master/asset/buttons/new/music.svg);
background-color: transparent;
background-repeat: no-repeat;
/*background-position: center center;*/
border: 1px; /* Remove borders */
padding: 40px 30px; /* Some padding */
}
.art-btn {
background-image: url(https://github.com/turingtestaishni/projectloci.github.io/tree/master/asset/buttons/new/art.svg);
background-color: transparent;
background-repeat: no-repeat;
/*background-position: center center;*/
border: 1px; /* Remove borders */
padding: 45px 30px; /* Some padding */
}
.smell-btn {
background-image: url(https://github.com/turingtestaishni/projectloci.github.io/tree/master/asset/buttons/new/smell.png);
background-color: transparent;
background-repeat: no-repeat;
/*background-position: center center;*/
border: 1px; /* Remove borders */
padding: 30px 30px; /* Some padding */
}
#smellbar {
visibility: hidden;
min-width: 250px;
margin-left: -125px;
background-color: #fff;
color: #000;
text-align: center;
border-radius: 2px;
padding: 16px;
position: fixed;
z-index: 1;
left: 50%;
bottom: 20%;
font-size: 17px;
font-family: Helvetica Neue;
}
#smellbar.show {
visibility: visible;
-webkit-animation: fadein 0.1s;
/*animation: fadein 0.5s, fadeout 0.5s 2.5s;*/
}
#smellbar.hide {
visibility: hidden;
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}