Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

responsive - global: footer, index: download links #32

Closed
wants to merge 3 commits into from
Closed
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
2 changes: 1 addition & 1 deletion es6.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="iojs">
<meta name="keywords" content="iojs, io.js, io js, javascript io, uv, libuv, node-forward, node forward, node, node.js, node.js forward, nodejs, nodejs forward, javascript">
<title>JavaScript I/O</title>
<title>io.js - ES6 on io.js</title>
<link href='//fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
Expand Down
2 changes: 1 addition & 1 deletion faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="iojs">
<meta name="keywords" content="iojs, io.js, io js, javascript io, uv, libuv, node-forward, node forward, node, node.js, node.js forward, nodejs, nodejs forward, javascript">
<title>JavaScript I/O</title>
<title>io.js - FAQ</title>
<link href='//fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="iojs">
<meta name="keywords" content="iojs, io.js, io js, javascript io, uv, libuv, node-forward, node forward, node, node.js, node.js forward, nodejs, nodejs forward, javascript">
<title>JavaScript I/O</title>
<title>io.js - JavaScript I/O</title>
<link href='//fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
Expand Down Expand Up @@ -35,7 +35,7 @@ <h1>JavaScript I/O</h1>
</p>

<div class="release">
<a href="https://iojs.org/download/dist/v1.0.0">
<a href="https://iojs.org/download/dist/v1.0.0" class="release-logo-link">
<img class="release-logo" src="images/1.0.0.png" />
</a>
<div class="release-details">
Expand Down
41 changes: 35 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ ul {
}

.release-version {
display: block;
font-size: 1.4rem;
font-weight: 700;
color: black;
Expand Down Expand Up @@ -174,6 +175,17 @@ p.lead {
text-align:center;
}

@media (max-width: 560px) {
nav a {
line-height: 3;
display: block;
border: none;
}
.release-version em {
display: block;
}
}

@media (max-width: 480px) {
h1 {
font-size: 2rem;
Expand All @@ -187,12 +199,6 @@ p.lead {
margin-top: 20px;
}

nav a {
line-height: 3;
display: block;
border: none;
}

header .content {
padding: 0;
}
Expand All @@ -201,3 +207,26 @@ p.lead {
padding-left: 1rem;
}
}

@media (max-width: 410px) {
.content {
padding-left: 15px;
padding-right: 15px;
}
.release-logo-link {
display: block;
text-align: center;
}
.release-logo {
position: relative;
top: initial;
left: initial;
}
.release-version {
text-align: center;
}
.release-details {
padding-left: initial;
padding-top: initial;
}
}