-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-3.css
61 lines (51 loc) · 1.03 KB
/
style-3.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
.column {
float: right;
/* margin: -200px 100px -15px 15px; */
flex-direction: row;
width: 70vw;
justify-content: center;
align-content: flex-start;
padding-left: 40px;
}
.sidebar {
position: fixed;
}
.column img {
border: 10px solid #482D1C;
width: 19%;
}
#main {
padding-left: 15vw;
width: 75vw;
}
@media only screen and (max-width: 425px) and (min-width: 320px) {
.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 {
width: 50vw;
}
#main {
padding: 0px;
width: 100vw;
height: auto;
}
footer {
clear: both;
height: 6vh;
}
footer h4 {
font-family: 'Alkatra', cursive;
color: white;
text-align: center;
padding: 10px;
}
}