-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle3.css
46 lines (43 loc) · 825 Bytes
/
style3.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
@media only screen and (max-width: 600px) {
.photo-wrapper{
flex-basis: 95%;
padding: 1%;
margin: 10px;
}
}
@media only screen and (min-width: 600px) {
.photo-wrapper{
flex-basis: 46%;
padding: 1%;
margin: 5px;
}
}
@media only screen and (min-width: 1100px) {
.photo-wrapper{
flex-basis: 21%;
padding: 1%;
}
}
.footer{
text-align: center;
padding: 20px;
background-color: #FCD22Aea;
color: white;
}
.gallery-wrapper{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
margin: 10px;
}
.photo-wrapper{
border: 1px solid lightgray;
border-radius: 10px;
text-align: center;
}
.photo-wrapper > img{
width: 90%;
}
.gallery-wrapper .heading{
margin: 10px;
}