-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from msaaddev/master
📦NEW: modularity and indexing + 🐛FIX: tags
- Loading branch information
Showing
5 changed files
with
169 additions
and
214 deletions.
There are no files selected for viewing
File renamed without changes
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,156 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
/*Tablet Lanescape*/ | ||
@media screen and(max-width: 1060px) { | ||
#primary { | ||
width: 67%; | ||
} | ||
#secondary { | ||
width: 30%; | ||
margin-left: 3%; | ||
} | ||
} | ||
|
||
/*Tabled portrait */ | ||
@media screen and(max-width: 768px) { | ||
#primary { | ||
width: 100%; | ||
} | ||
#secondary { | ||
width: 100%; | ||
margin-left: 3%; | ||
margin: 0; | ||
border: none; | ||
} | ||
} | ||
/*Styling header part*/ | ||
header { | ||
width: 100%; | ||
overflow: hidden; | ||
height: 140px; | ||
background-color: white; | ||
color: black; | ||
font-family: 'Abril Fatface'; | ||
font-size: 140%; | ||
text-align: center; | ||
} | ||
/*Top name "NELSON MANDELA" */ | ||
.name { | ||
padding-top: 15px; | ||
} | ||
|
||
.description { | ||
padding-top: 15px; | ||
font-size: 80%; | ||
font-family: 'Abril Fatface'; | ||
} | ||
/*main part of the page*/ | ||
.main { | ||
height: 700px; | ||
width: 100%; | ||
} | ||
/*div for image*/ | ||
div.column1 { | ||
float: left; | ||
width: 70%; | ||
height: 700px; | ||
} | ||
/*div for quote*/ | ||
div .quote { | ||
padding-top: 70px; | ||
height: 200px; | ||
margin: 0; | ||
text-align: center; | ||
font-size: 20px; | ||
font-family: 'Quattrocento', serif; | ||
} | ||
/*writer name*/ | ||
.writer { | ||
text-align: justify; | ||
padding-top: 30px; | ||
padding-left: 500px; | ||
} | ||
/*Column for quick facts*/ | ||
div.column2 { | ||
float: left; | ||
width: 30%; | ||
height: 700px; | ||
} | ||
/*Styling Nelson's image*/ | ||
.image { | ||
height: 500px; | ||
width: 100%; | ||
} | ||
/*Quick info div*/ | ||
.quick_info { | ||
height: 700px; | ||
width: 300px; | ||
margin: auto; | ||
border: solid 2px gray; | ||
text-align: center; | ||
} | ||
.quick_fact { | ||
padding-top: 40px; | ||
font-weight: bold; | ||
font-size: 60x; | ||
} | ||
/*questions in wuick info*/ | ||
.heading { | ||
color: gray; | ||
padding-top: 15px; | ||
} | ||
.Answer { | ||
font-family: 'Montserrat'; | ||
text-align: center; | ||
} | ||
/*class for icons (twitter, facebook, youtube)*/ | ||
.fa { | ||
padding: 15px; | ||
margin-top: 50px; | ||
margin-right: 15px; | ||
font-size: 30px; | ||
width: 15px; | ||
text-align: center; | ||
text-decoration: none; | ||
} | ||
|
||
/* Add a hover effect */ | ||
.fa:hover { | ||
opacity: 0.7; | ||
} | ||
|
||
/* Facebook */ | ||
.fa-facebook { | ||
background: #3b5998; | ||
color: white; | ||
} | ||
|
||
/* Twitter */ | ||
.fa-twitter { | ||
background: #55acee; | ||
color: white; | ||
} | ||
/* Youtube */ | ||
.fa-youtube { | ||
background-color: #c4302b; | ||
color: white; | ||
} | ||
/* Footer styling */ | ||
.end { | ||
height: 70px; | ||
margin-top: 50px; | ||
background-color: black; | ||
width: 100%; | ||
overflow: hidden; | ||
} | ||
/*links in footer*/ | ||
ul li { | ||
float: right; | ||
color: white; | ||
padding: 20px; | ||
list-style: none; | ||
background-color: black; | ||
} |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.