forked from goelnaman66/lightWebsite2020
-
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
Showing
1 changed file
with
187 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,187 @@ | ||
body { | ||
overflow-x: hidden; | ||
font-family: 'Roboto Slab', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; | ||
} | ||
|
||
h2, | ||
h3 { | ||
font-weight: 700; | ||
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; | ||
} | ||
|
||
.page-section { | ||
padding: 0px 0px ; | ||
} | ||
|
||
.page-section h2.section-heading { | ||
font-size: 40px; | ||
margin-top: 0; | ||
margin-bottom: 15px; | ||
} | ||
|
||
.page-section h3.section-subheading { | ||
font-size: 16px; | ||
font-weight: 400; | ||
font-style: italic; | ||
margin-bottom: 75px; | ||
text-transform: none; | ||
font-family: 'Droid Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; | ||
} | ||
|
||
|
||
@import url(https://fonts.googleapis.com/css?family=Roboto:900,300); | ||
body { | ||
background-color: #f0f0f0; | ||
font-family: roboto; | ||
} | ||
@media (max-width: 996px) and (min-width: 600px) { | ||
|
||
.q { | ||
width: 500px; | ||
height: 380px; | ||
margin: 120px auto 120px; | ||
background-color: #fff; | ||
padding: 0 30px 30px; | ||
border-radius: 6px; | ||
-webkit-border-radius: 6px; | ||
-moz-border-radius: 6px; | ||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
text-align: center; | ||
} | ||
} | ||
|
||
@media (max-width: 1400px) and (min-width: 996px) { | ||
|
||
.q { | ||
width: 290px; | ||
height: 380px; | ||
margin: 120px auto 120px; | ||
background-color: #fff; | ||
padding: 0 5px 5px; | ||
border-radius: 6px; | ||
-webkit-border-radius: 6px; | ||
-moz-border-radius: 6px; | ||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
text-align: center; | ||
} | ||
} | ||
@media (min-width: 1400px){ | ||
.q { | ||
width: 400px; | ||
height: 400px; | ||
margin: 120px auto 120px; | ||
background-color: #fff; | ||
padding: 0 20px 20px; | ||
border-radius: 6px; | ||
-webkit-border-radius: 6px; | ||
-moz-border-radius: 6px; | ||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
text-align: center; | ||
} | ||
} | ||
|
||
@media (max-width: 600px) { | ||
|
||
.q { | ||
width: 350px; | ||
height: 380px; | ||
margin: 120px auto 120px; | ||
background-color: #fff; | ||
padding: 0 10px 10px; | ||
border-radius: 6px; | ||
-webkit-border-radius: 6px; | ||
-moz-border-radius: 6px; | ||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075); | ||
text-align: center; | ||
} | ||
} | ||
|
||
|
||
|
||
.avatar-flip { | ||
border-radius: 100px; | ||
overflow: hidden; | ||
height: 150px; | ||
width: 150px; | ||
position: relative; | ||
margin: auto; | ||
top: -60px; | ||
transition: all 0.3s ease-in-out; | ||
-webkit-transition: all 0.3s ease-in-out; | ||
-moz-transition: all 0.3s ease-in-out; | ||
box-shadow: 0 0 0 13px #f0f0f0; | ||
-webkit-box-shadow: 0 0 0 13px #f0f0f0; | ||
-moz-box-shadow: 0 0 0 13px #f0f0f0; | ||
} | ||
|
||
.avatar-flip img { | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
border-radius: 100px; | ||
transition: all 0.3s ease-in-out; | ||
-webkit-transition: all 0.3s ease-in-out; | ||
-moz-transition: all 0.3s ease-in-out; | ||
} | ||
|
||
.avatar-flip img:first-child { | ||
z-index: 1; | ||
} | ||
|
||
.avatar-flip img:last-child { | ||
z-index: 0; | ||
transform: rotateY(180deg); | ||
-webkit-transform: rotateY(180deg); | ||
opacity: 0; | ||
} | ||
|
||
h2 { | ||
font-size: 32px; | ||
font-weight: 600; | ||
margin-bottom: 15px; | ||
color: #333; | ||
} | ||
|
||
h4 { | ||
font-size: 13px; | ||
color: #18d26e; | ||
letter-spacing: 1px; | ||
margin-bottom: 25px | ||
} | ||
|
||
p { | ||
font-size: 16px; | ||
line-height: 26px; | ||
margin-bottom: 20px; | ||
color: #666; | ||
} | ||
|
||
.icons li { | ||
display: inline-block; | ||
border: 1px solid; | ||
border-radius: 50%; | ||
width: 40px; | ||
height: 40px; | ||
padding-top: 2.5%; | ||
} | ||
|
||
.icons { | ||
margin: auto; | ||
margin-left: 5%; | ||
margin-right: 15%; | ||
} | ||
|
||
button.btn { | ||
color: #f0f0f0; | ||
background-color: #18d26e; | ||
width: 80%; | ||
margin-bottom: 1.2rem; | ||
} |