-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.css
91 lines (78 loc) · 1.46 KB
/
aboutus.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
*{
margin: 0;
padding: 0;
font-family: "Open Sans",cambria;
box-sizing: border-box;
background: #351f34;
}
body{
min-height: 80vh;
display: flex;
background-color:351f34;
align-items: center;
justify-content: center;
}
.about-section{
background-size: 55%;
background-color:#351f34;
overflow: hidden;
display: flex;
align-items: center;
}
.inner-container{
width: 50%;
float: left;
background: #351f34;
padding: 100px;
}
.inner-container h1{
margin-bottom: 30px;
font-size: 30px;
font-weight: 900;
color:white;
background-color: none;
}
.text{
font-size: 15px;
color:white;
line-height: 30px;
text-align: justify;
margin-bottom: 40px;
background-color: none;
}
.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;
}
}
.hero-img{
border-top-left-radius: 25rem;
border-top-right-radius: 25rem;
border-bottom-right-radius: 25rem;
border-bottom-left-radius: 25rem;
height:70vh;
width:70vh;
}