-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (47 loc) · 872 Bytes
/
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
* {
margin: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
html,
body {
width: 100%;
}
header {
width: 100%;
display: flex;
justify-content: center;
}
#search-form {
display: flex;
justify-content: center;
width: 33%;
}
#search-bar {
width: 100%;
height: 30px;
background-color: #f1f1f1;
color: grey;
margin: 15px 0;
text-align: left;
border-radius: 2px;
border: .5px solid black;
}
#search-title {
text-align: center;
}
#photo-div {
display: flex;
flex-direction: column;
flex-wrap: wrap;
height: 1500vh;
margin: 10px;
}
#photo-div>section {
margin: 10px;
max-width: 30%;
}
.thumbnail-pics {
max-width: 100%;
border-radius: 1px;
}