Skip to content

Instantly share code, notes, and snippets.

@maalos
Last active May 23, 2022 21:08
Show Gist options
  • Save maalos/04b687234f8f69554e65dc4e84d2173b to your computer and use it in GitHub Desktop.
Save maalos/04b687234f8f69554e65dc4e84d2173b to your computer and use it in GitHub Desktop.
html template
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Document</title>
<style>
@media (prefers-color-scheme: dark) {
body {color:#fff;background:#000;}
a:link {color:#cdf;}
a:hover, a:visited:hover {color:#def;}
a:visited {color:#dcf;}
}
body {
margin: 1em auto;
max-width: 40em;
padding: 0 .62em;
font: 1.2em/1.62 sans-serif;
}
h1,h2,h3 {
line-height: 1.2;
}
@media print{
body{
max-width:none
}
}
</style>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment