_project_lead.scss
1.07 KB
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
.project-lead{
width: 100%;
display: flex;
min-height: 200px;
background-color: #F0F0F0;
color: #000;
flex-direction: row;
border-radius: 10px;
margin:40px 0px;
padding: 20px;
overflow: hidden;
@media screen and (max-width: 900px) {
flex-direction: column;
border-radius: 20px;
}
.image{
display: flex;
flex-wrap: wrap;
img{
height: 200px;
}
}
.content{
width: 75%;
display: flex;
flex-direction: column;
justify-content: flex-start;
padding-left: 20px;
@media screen and (max-width: 900px) {
width: 100%;
padding-left: 0px;
padding-top: 20px;
}
h2{
font-size: 25px;
line-height: 30px;
font-weight: 700;
margin-bottom: 20px;
@media screen and (max-width: 900px) {
font-size: 24px;
}
}
p{
font-size: 16px;
line-height: 20px;
}
}
}