-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
52 lines (52 loc) · 974 Bytes
/
Copy pathstyle2.css
File metadata and controls
52 lines (52 loc) · 974 Bytes
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
.main{
width:100vw;
height: 60vh;
display: flex;
flex-direction: row;
}
.main .right{
width: 55vw;
height: 80vh;
}
.main .right img{
width: 55vw;
height: 80vh;
}
.main .left{
width: 45vw;
height: 80vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
.left h1{
font-family: 'Poppins', sans-serif;
}
.left h3{
font-family: 'Redressed', cursive;
}
@media (max-width:910px){
.main{
flex-direction: column;
height: 160vh;
}
.main .right{
width: 100vw;
height: 80vh;
}
.main .right img{
width: 100vw;
height: 80vh;
}
.main .left{
width: 100vw;
height: 80vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
}