added about app component

This commit was merged in pull request #61.
This commit is contained in:
Ebube
2024-02-01 18:04:39 +01:00
parent 490492bd0f
commit a312984df8
4 changed files with 367 additions and 0 deletions
+87
View File
@@ -142,3 +142,90 @@
left: 15px;
}
}
/* -----------------About-App-Section-Css-Start------------------ */
/* about us section wraper */
.about_app_section .about_img {
display: flex;
align-items: center;
position: relative;
}
/* about us section images*/
.about_app_section .about_img img {
max-width: 100%;
}
.about_app_section .about_img::before {
content: "";
position: absolute;
left: 38%;
top: 50%;
transform: translate(-50%, -50%);
width: 500px;
height: 500px;
background-color: var(--bg-white);
border-radius: 100%;
z-index: -1;
}
.about_app_section .about_img .screen_img {
margin-left: -135px;
margin-top: 110px;
}
.about_app_section .about_text .section_title {
text-align: left;
}
.about_app_section .about_text .section_title h2 {
margin-bottom: 15px;
}
/* about us section statastics nomber */
.about_app_section .about_text .app_statstic {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 10px;
margin-top: 40px;
}
.about_app_section .about_text .app_statstic li {
width: 248px;
background-color: var(--bg-white);
margin-bottom: 30px;
display: flex;
align-items: center;
border-radius: 12px;
padding: 15px 10px;
padding-left: 35px;
box-shadow: 0px 4px 10px #EDE9FE;
}
.about_app_section .about_text .app_statstic li .icon {
margin-right: 9px;
}
.about_app_section .about_text .app_statstic li p {
margin-bottom: 0;
line-height: 1;
color: var(--dark-purple);
}
.about_app_section .about_text .app_statstic li p:first-child {
font-size: 40px;
font-weight: 600;
margin-bottom: 3px;
}
.about_app_section .about_img .screen_img img {
animation-delay: 3s;
}
.about_app_section .about_text .list {
margin-top: 45px;
margin-bottom: 45px;
}