-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-2.css
59 lines (52 loc) · 1.08 KB
/
style-2.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
.column {
/* float: right;
margin: -200px 100px -15px 15px; */
float: right;
width: 25vw;
justify-content: flex-start;
align-content: flex-start;
padding-left: 40px;
margin-right: 100px;
}
.column img {
border: 8px solid #482D1C;
width: 10vw;
height: auto;
margin: 8;
}
#main {
padding-left: 15vw;
width: 75vw;
}
@media only screen and (max-width: 425px) and (min-width: 320px){
#main {
width: 100vw;
}
.column {
/* float: right; */
/* margin: -1px 100px -10px 15px; */
display: flex;
/* flex-direction: row; */
flex-wrap: wrap;
width: 100vw;
/* gap: 100px; */
justify-content: center;
/* align-content: space-around; */
}
.column img {
border: 8px solid #482D1C;
margin: 8px;
width: 30vw;
height: auto;
}
footer{
clear:both;
height: 6vh;
}
footer h4 {
font-family: 'Alkatra', cursive;
color: white;
text-align: center;
padding: 10px;
}
}