-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.css
72 lines (72 loc) · 1.23 KB
/
about.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
62
63
64
65
66
67
68
69
70
71
72
.hero{
background-image: url(about-hero.jpg);
background-size: cover;
color: white;
}
.hero button{
color: white;
}
.main-content{
width: 100vw;
height: 60vh;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
}
.main-content .team h3{
font-family:'Montserrat', sans-serif;
}
.logo{
width: 100vw;
height: 40vh;
justify-content: center;
display: flex;
}
.logo img{
width: 30vw;
height: 40vh;
border-radius: 10px;
}
.future{
width: 100vw;
margin-top: 40px;
height: 40vh;
display: flex;
flex-direction: column;
align-items: center;
}
.future p{
margin: 20px;
text-align: center;
}
@media (max-width:560px){
.main-content{
height: 80vh;
text-align: center;
}
.future{
margin-bottom: 40vh;
}
.logo img{
width: 80vw;
}
}
@media (max-height:400px){
.main-content{
text-align: center;
height: 80vh;
}
.future{
height: 80vh;
}
}
@media (max-height:300px){
.main-content{
text-align: center;
height: 100vh;
}
.future{
height: 100vh;
}
}