-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.css
76 lines (67 loc) · 1.34 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
73
74
75
76
@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Acme&family=Roboto&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
align-items: center;
justify-content: center;
background-color: #B4B8B0;
}
.about-section{
background: url(pic.jpg) no-repeat left;
background-size: 54%;
background-color: #B4B8B0;
overflow: hidden;
padding: 100px 0px;
margin-left: 20px;
}
.inner-container{
width: 55%;
float: right;
background-color: #B4B8B0;
padding: 150px;
}
.inner-container h1{
margin-bottom: 30px;
font-size: 30px;
font-weight: 900;
}
.text{
font-size: 13px;
color: #000000;
line-height: 30px;
text-align: justify;
margin-bottom: 40px;
}
.skills{
display: flex;
justify-content: space-between;
font-weight: 700;
font-size: 13px;
}
@media screen and (max-width:1200px){
.inner-container{
padding: 80px;
}
}
@media screen and (max-width:1000px){
.about-section{
background-size: 100%;
padding: 100px 40px;
}
.inner-container{
width: 100%;
}
}
@media screen and (max-width:600px){
.about-section{
padding: 0;
}
.inner-container{
padding: 60px;
}
}