mirror of
https://github.com/actix/actix-website
synced 2024-11-23 16:31:08 +01:00
make mobile Responsive right
This commit is contained in:
parent
920a48f0c5
commit
dbd274a8bf
@ -1,3 +1,3 @@
|
||||
<div >
|
||||
<p>Made ❤️ by the <a href="https://cobalt-org.github.io/">Cobalt</a> with the <a href="https://github.com/krircc/beautiful">beautiful</a> theme</p>
|
||||
<p>Made ❤️ by the <a href="https://cobalt-org.github.io/">Cobalt</a> with the <a href="https://github.com/actix/actix-website">Actix</a> theme</p>
|
||||
</div>
|
||||
|
@ -2,5 +2,6 @@
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>{{ title }}</title>
|
||||
<link rel="stylesheet" href="/public/css/styles.css">
|
||||
<link rel="shortcut icon" href="/public/imgs/favicon.ico">
|
||||
<link rel="stylesheet" href="/public/css/styles.css">
|
||||
<script src="/public/js/nav.js" async="async"></script>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<div id="mnav">
|
||||
<div id="lnav">
|
||||
<div id="line"></div>
|
||||
<h1><a href="/">Actix</a></h1>
|
||||
<label ><a href="#" id="menu">menu</a></label>
|
||||
</div>
|
||||
|
@ -22,7 +22,6 @@
|
||||
}
|
||||
|
||||
body {
|
||||
border-top: 4px solid var(--orange);
|
||||
font-family: var(--font-stack);
|
||||
line-height: 1.4rem;
|
||||
}
|
||||
@ -50,7 +49,14 @@ ul, ol, li {
|
||||
border-bottom: 1px solid #dfdcdc;
|
||||
box-shadow: 0 3px 3px rgba(200, 216, 206, 0.12), 0 3px 3px rgba(97, 107, 100, 0.24);
|
||||
}
|
||||
|
||||
#line {
|
||||
position: fixed;
|
||||
zoom:1;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 4px;
|
||||
background-color: var(--orange);
|
||||
}
|
||||
#lnav h1 a {
|
||||
font-size: 33px;
|
||||
margin: auto 2vw;
|
||||
@ -169,26 +175,24 @@ footer p {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* ----------------------------------------mobile----------------------------------------*/
|
||||
@media only screen and (max-width: 600px) {
|
||||
#rnav {
|
||||
display: none;
|
||||
padding-top: 4rem;
|
||||
height: 0;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
}
|
||||
section {
|
||||
margin: 5rem auto 2rem ;
|
||||
#rnav li a {
|
||||
color: var(--orange);
|
||||
display:block;
|
||||
font-weight: bold;
|
||||
border-bottom: 1px solid #d8d8d8;
|
||||
padding: 0.5rem 1rem;
|
||||
}
|
||||
main {
|
||||
margin: 0 auto ;
|
||||
padding-top: 1rem;
|
||||
width: 94%;
|
||||
}
|
||||
}
|
||||
@ -220,14 +224,9 @@ footer p {
|
||||
}
|
||||
main {
|
||||
margin: 0 auto;
|
||||
padding-top: 5rem;
|
||||
width: 88%;
|
||||
}
|
||||
section {
|
||||
margin-top: 3rem;
|
||||
padding: 2rem 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
section.docs .inner {
|
||||
display: flex;
|
||||
}
|
||||
@ -235,7 +234,9 @@ footer p {
|
||||
section.docs aside {
|
||||
flex: 0 1 30%;
|
||||
}
|
||||
|
||||
section.docs aside p {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
section.docs main {
|
||||
flex: 0 1 70%;
|
||||
}
|
||||
@ -280,13 +281,9 @@ footer p {
|
||||
}
|
||||
main {
|
||||
margin: 0 auto;
|
||||
padding-top: 5.5rem;
|
||||
width: 77%;
|
||||
}
|
||||
section {
|
||||
margin-top: 4rem;
|
||||
padding: 2rem 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
section.docs .inner {
|
||||
display: flex;
|
||||
@ -297,7 +294,6 @@ footer p {
|
||||
}
|
||||
section.docs aside p {
|
||||
font-size: 1.3rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
section.docs main {
|
||||
flex: 0 1 70%;
|
||||
|
14
public/js/nav.js
Normal file
14
public/js/nav.js
Normal file
@ -0,0 +1,14 @@
|
||||
var menu = document.getElementById('menu');
|
||||
menu.addEventListener('click', function() {
|
||||
var nav = document.getElementById('rnav');
|
||||
if (nav.style.height == 'auto') {
|
||||
nav.style.height = '0';
|
||||
}else{
|
||||
nav.style.height = 'auto';
|
||||
}
|
||||
|
||||
// they are same
|
||||
// manv.style.height = 'auto';
|
||||
// manv.setAttribute('style', 'height: auto !important');
|
||||
// manv.style.setProperty( 'height',' auto', 'important');
|
||||
}, false);
|
Loading…
Reference in New Issue
Block a user