Skip to content
Open

Done #214

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions css/responsive.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
@media only screen and (max-width: 1108px){
body {
font-size: 100%;
}
.wrapper {
width: 90%;
}
#social {
position: absolute;
top: 82px;
right: 4px;
}
}

@media only screen and (max-width: 900px){
body {
font-size: 85%;
}
#logo h1 {
width: 35px;
height: 35px;
}
#logo h2 {
font-size: 2.2em;
}
#social {
top: 72px;
}
.col-3 p {
column-count: 2;
}
}

@media only screen and (max-width: 750px){
#navbar nav a{
font-size: 0.9em;
}
.col-3 p{
column-count: 1;
}
.col-1, .col-2, .col-3{
width: 100%;
margin-left: 0;
float: none;
}
.border-right{
border: 0;
}
#details div{
height: auto;
}

}

@media only screen and (max-width:700px){
#navbar nav a{
display: none;
}
#navbar nav a.menu-icon{
display: block;
float: right;
font-size: 1.5em;
padding: 10px 20px;
width: auto;
}
#logo{
padding: 60px 0 0;
}
#social{
top: 60px;
}

}
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport", content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<title>Exceptional Realty Group - Luxury Homes - About</title>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.0/normalize.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.7.1/modernizr.min.js"></script>
</head>
<body>
Expand Down