-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Abid
authored and
Abid
committed
Aug 24, 2020
1 parent
7a4d2f8
commit 9e88ddb
Showing
15 changed files
with
11,450 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,177 @@ | ||
.App { | ||
body { | ||
font: 400 15px Lato, sans-serif; | ||
line-height: 1.8; | ||
color: #818181; | ||
} | ||
h2 { | ||
font-size: 24px; | ||
text-transform: uppercase; | ||
color: #303030; | ||
font-weight: 600; | ||
margin-bottom: 30px; | ||
} | ||
h4 { | ||
font-size: 19px; | ||
line-height: 1.375em; | ||
color: #303030; | ||
font-weight: 400; | ||
margin-bottom: 30px; | ||
} | ||
.jumbotron { | ||
background-color: #f4511e; | ||
color: #fff; | ||
padding: 100px 25px; | ||
font-family: Montserrat, sans-serif; | ||
} | ||
.container-fluid { | ||
padding: 60px 50px; | ||
} | ||
.bg-grey { | ||
background-color: #f6f6f6; | ||
} | ||
.logo-small { | ||
color: #f4511e; | ||
font-size: 50px; | ||
} | ||
.logo { | ||
color: #f4511e; | ||
font-size: 200px; | ||
} | ||
.thumbnail { | ||
padding: 0 0 15px 0; | ||
border: none; | ||
border-radius: 0; | ||
} | ||
.thumbnail img { | ||
width: 100%; | ||
height: 100%; | ||
margin-bottom: 10px; | ||
} | ||
.carousel-control.right, .carousel-control.left { | ||
background-image: none; | ||
color: #f4511e; | ||
} | ||
.carousel-indicators li { | ||
border-color: #f4511e; | ||
} | ||
.carousel-indicators li.active { | ||
background-color: #f4511e; | ||
} | ||
.item h4 { | ||
font-size: 19px; | ||
line-height: 1.375em; | ||
font-weight: 400; | ||
font-style: italic; | ||
margin: 70px 0; | ||
} | ||
.item span { | ||
font-style: normal; | ||
} | ||
.panel { | ||
border: 1px solid #f4511e; | ||
border-radius:0 !important; | ||
transition: box-shadow 0.5s; | ||
} | ||
.panel:hover { | ||
box-shadow: 5px 0px 40px rgba(0,0,0, .2); | ||
} | ||
.panel-footer .btn:hover { | ||
border: 1px solid #f4511e; | ||
background-color: #fff !important; | ||
color: #f4511e; | ||
} | ||
.panel-heading { | ||
color: #fff !important; | ||
background-color: #f4511e !important; | ||
padding: 25px; | ||
border-bottom: 1px solid transparent; | ||
border-top-left-radius: 0px; | ||
border-top-right-radius: 0px; | ||
border-bottom-left-radius: 0px; | ||
border-bottom-right-radius: 0px; | ||
} | ||
.panel-footer { | ||
background-color: white !important; | ||
} | ||
.panel-footer h3 { | ||
font-size: 32px; | ||
} | ||
.panel-footer h4 { | ||
color: #aaa; | ||
font-size: 14px; | ||
} | ||
.panel-footer .btn { | ||
margin: 15px 0; | ||
background-color: #f4511e; | ||
color: #fff; | ||
} | ||
.navbar { | ||
margin-bottom: 0; | ||
background-color: #f4511e; | ||
z-index: 9999; | ||
border: 0; | ||
font-size: 12px !important; | ||
line-height: 1.42857143 !important; | ||
letter-spacing: 4px; | ||
border-radius: 0; | ||
font-family: Montserrat, sans-serif; | ||
} | ||
.navbar li a, .navbar .navbar-brand { | ||
color: #fff !important; | ||
} | ||
.navbar-nav li a:hover, .navbar-nav li.active a { | ||
color: #f4511e !important; | ||
background-color: #fff !important; | ||
} | ||
.navbar-default .navbar-toggle { | ||
border-color: transparent; | ||
color: #fff !important; | ||
} | ||
footer .glyphicon { | ||
font-size: 20px; | ||
margin-bottom: 20px; | ||
color: #f4511e; | ||
} | ||
.slideanim {visibility:hidden;} | ||
.slide { | ||
animation-name: slide; | ||
-webkit-animation-name: slide; | ||
animation-duration: 1s; | ||
-webkit-animation-duration: 1s; | ||
visibility: visible; | ||
} | ||
@keyframes slide { | ||
0% { | ||
opacity: 0; | ||
transform: translateY(70%); | ||
} | ||
100% { | ||
opacity: 1; | ||
transform: translateY(0%); | ||
} | ||
} | ||
@-webkit-keyframes slide { | ||
0% { | ||
opacity: 0; | ||
-webkit-transform: translateY(70%); | ||
} | ||
100% { | ||
opacity: 1; | ||
-webkit-transform: translateY(0%); | ||
} | ||
} | ||
@media screen and (max-width: 768px) { | ||
.col-sm-4 { | ||
text-align: center; | ||
margin: 25px 0; | ||
} | ||
.btn-lg { | ||
width: 100%; | ||
margin-bottom: 35px; | ||
} | ||
} | ||
|
||
.App-logo { | ||
height: 40vmin; | ||
pointer-events: none; | ||
} | ||
|
||
@media (prefers-reduced-motion: no-preference) { | ||
.App-logo { | ||
animation: App-logo-spin infinite 20s linear; | ||
} | ||
} | ||
|
||
.App-header { | ||
background-color: #282c34; | ||
min-height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
font-size: calc(10px + 2vmin); | ||
color: white; | ||
} | ||
|
||
.App-link { | ||
color: #61dafb; | ||
} | ||
|
||
@keyframes App-logo-spin { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
to { | ||
transform: rotate(360deg); | ||
} | ||
@media screen and (max-width: 480px) { | ||
.logo { | ||
font-size: 150px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import React, { Fragment } from 'react'; | ||
|
||
const About = () => { | ||
return ( | ||
<Fragment> | ||
<div id="about" className="container-fluid"> | ||
<div className="row"> | ||
<div className="col-sm-8"> | ||
<h2>About Company Page</h2><br /> | ||
<h4>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4><br /> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> | ||
<br /><button className="btn btn-default btn-lg">Get in Touch</button> | ||
</div> | ||
<div className="col-sm-4"> | ||
<span className="glyphicon glyphicon-signal logo"></span> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div className="container-fluid bg-grey"> | ||
<div className="row"> | ||
<div className="col-sm-4"> | ||
<span className="glyphicon glyphicon-globe logo slideanim"></span> | ||
</div> | ||
<div className="col-sm-8"> | ||
<h2>Our Values</h2><br /> | ||
<h4><strong>MISSION:</strong> Our mission lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4><br /> | ||
<p><strong>VISION:</strong> Our vision Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</Fragment> | ||
) | ||
}; | ||
|
||
export default About; |
Oops, something went wrong.