-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.css
74 lines (70 loc) · 1.07 KB
/
project.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
73
74
.project{
padding: 10vw;
padding-top: 0;
padding-bottom: 0;
display: flex;
}
.image-box{
/* height: 100%; */
width: 30%;
background-color: white;
border: 1px solid black;
border-radius: 10px;
overflow: hidden;
align-items: center;
justify-content: center;
display: flex;
}
.image{
border: 0px;
height: 20vw;
align-self: center;
align-items: center;
}
.ref-aim{
text-align: center;
align-items: center;
padding: 2vw;
width: 70%;
}
.ref-aim h3{
font-size: 35px;
font-weight: bolder;
padding-bottom: 25px;
letter-spacing: 0.05em;
}
.ref-aim p{
font-size: 22px;
text-align: justify;
}
.ref-aim li{
font-size: 17px;
text-align: justify;
}
@media (max-width:740px){
.project{
width: 100%;
height: auto;
flex-direction: column;
}
.image-box{
width: 100%;
}
.image{
width: 80%;
height: auto;
}
.ref-aim{
width: 100%;
}
.ref-aim h1{
font-size: 30px;
}
.ref-aim h3{
font-size: 20px;
}
.ref-aim p{
font-size: 15px;
text-align: justify;
}
}