-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (51 loc) · 1.08 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
/*
* Always set the map height explicitly to define the size of the div element
* that contains the map.
*/
#map {
height: 50%;
}
/*
* Optional: Makes the sample page fill the window.
*/
html,
body {
height: 100vh;
/* Nasty hack to get rid of tiny, mysterious horizontal overflow scrolling: */
width: 99vw;
margin: 0;
padding: 0;
text-align: center;
font-family: Helvetica, sans-serif;
color: #1a2b2b;
/* TODO: Stick gradient ends to top and bottom of webpage dynamically */
background: linear-gradient(0deg, rgba(192,255,200,0.5), rgba(137,179,250,1) 6%, 96%, rgba(192,255,200,0.5));
}
#autocomplete {
border: solid 0.5rem #1a2b2b;
}
#photo-gallery {
display: flex;
flex-direction: row;
justify-content: space-evenly;
flex-wrap: wrap;
align-items: center;
padding-top: 0.5rem;
}
#photo {
max-height: 500px;
max-width: 40%;
border: solid 0.5rem #1a2b2b;
margin: 1rem 0;
}
#green {
color: green;
}
#error {
color: red;
font-weight: 900
}
.full-screen {
height: 100%;
width: 100%;
}