-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.css
116 lines (112 loc) · 1.89 KB
/
contactus.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body{
margin: 0;
padding: 0;
font-family: "open sans",sans-serif;
background: #F4F4F4;
background-size: cover;
height: 100%;
}
.about-section{
width: 70%;
background:#fff;
padding: 40px 0;
margin-left: auto;
margin-right:auto;
margin-top: 170px;
box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
border-radius: 30px;
border-left: 50px solid #3CEDA7;
border-right: 50px solid #3CEDA7;
}
.inner-width{
max-width: 1000px;
overflow: hidden;
padding: 0 20px;
margin: auto;
}
.about-section h1{
text-align: center;
}
.border{
width: 100px;
height: 3px;
background: #3CEDA7;
margin: 40px auto;
}
.about-section-row{
display: flex;
flex-wrap: wrap;
}
.about-section-col{
flex: 50%;
}
.about{
padding-right: 30px;
}
.about p{
text-align: justify;
margin-bottom: 20px;
color: #7E7C7A;
font-size: 17px;
}
.about a{
display: inline-block;
color: #7E7C7A;
text-decoration: none;
border: 2px solid #3CEDA7;
border-radius: 24px;
padding: 8px 40px;
transition: 0.4s linear;
}
.about a:hover{
color: #fff;
background: #3CEDA7;
}
.skills{
padding-left: 30px;
}
.skill{
margin-bottom: 10px;
}
.title{
color: #7E7C7A
}
.progress{
width: 100%;
height: 12px;
background: #ddd;
border-radius: 12px;
}
.progress-bar{
height: 12px;
background: #3CEDA7;
border-radius: 12px;
}
.p1{
width: 90%;
}
.p2{
width: 70%;
}
.p3{
width: 50%;
}
.progress-bar span{
float: right;
margin-right: 6px;
line-height: 13px;
color: #fff;
font-size: 12px;
}
@media screen and (max-width:700px) {
.about-section-col{
flex: 100%;
margin: 10px 0;
}
.about,.skills{
padding: 0;
}
.about{
text-align: center;
}
}