forked from TheZoom110/Esperanza-2023-Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-body.css
57 lines (55 loc) · 981 Bytes
/
about-body.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
.body{
background: linear-gradient(rgb(225, 204, 204),rgb(158, 170, 170));
margin: -2rem 0;
width: 100vw;
}
.about-head{
margin: 2rem;
padding: 1rem;
display: flex;
align-items: center;
}
.logo img{
height: 8rem;
}
.name{
margin: 2rem;
padding: 1rem;
font-size: 1.5rem;
}
.about-body{
display: flex;
flex-direction: column;
margin: 2rem;
padding: 1rem;
}
.about-body h3{
padding: 1rem 0;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.last-box{
margin: 2rem;
padding: 1rem;
display: flex;
}
.left{
width: 50vw;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 1rem;
}
.left h2{
padding: 0.5rem;
}
.right{
display: flex;
justify-content: center;
width: 50vw;
}
.map{
padding: 1rem 0;
}
.map iframe{
box-shadow: 2px 2px 10px 2px black;
}