Attempt to make mobile slightly less shit
This commit is contained in:
parent
0c1d197b86
commit
e7ae800d6f
|
@ -1,6 +1,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Quad's site</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet" />
|
||||
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
|
||||
<link href="style.css" rel="stylesheet" />
|
||||
|
|
11
style.css
11
style.css
|
@ -14,12 +14,14 @@ h1, h2, h3, h4, h5, p {
|
|||
background-color: #2b2b2b;
|
||||
min-width: 100vw;
|
||||
min-height: 100vh;
|
||||
max-width: 100vw;
|
||||
max-height: 100vh;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
color: #FFF;
|
||||
font-family: "Lato", sans-serif;
|
||||
}
|
||||
|
||||
/* TODO: Add some @Media thing with smaller margin-top on vertical devices */
|
||||
#content {
|
||||
display: block;
|
||||
margin-right: auto;
|
||||
|
@ -29,6 +31,13 @@ h1, h2, h3, h4, h5, p {
|
|||
margin-top: 25vh;
|
||||
max-height: 50vh;
|
||||
}
|
||||
|
||||
@media only screen and (max-device-width: 600px) {
|
||||
#content {
|
||||
margin-top: 10vh;
|
||||
max-height: 75vh;
|
||||
}
|
||||
}
|
||||
|
||||
#main-container {
|
||||
background-color: #3b3b3b;
|
||||
|
|
Loading…
Reference in New Issue