Skip to content

Instantly share code, notes, and snippets.

@McSinyx
Last active September 4, 2020 02:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save McSinyx/41655478a90822209767110990938caf to your computer and use it in GitHub Desktop.
Save McSinyx/41655478a90822209767110990938caf to your computer and use it in GitHub Desktop.
HTML template with 80-char width and tango color palette
/*
* A 80-char wide stylesheet with Tango color palette
* Copyright 2016 Raphael McSinyx
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
html {
padding-bottom: 4em;
}
body {
font-family: sans-serif;
line-height: 1.5em;
max-width: 40em;
padding: 0 2%;
margin: auto;
background-color: #eeeeec;
color: #2e3436;
}
a {
color: #204a87;
}
h1, h2, h3 {
line-height: 1.2em;
}
<!DOCTYPE html>
<!--
A simple HTML5 template
Copyright 2016 Raphael McSinyx
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<html>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="min.css">
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment