mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-07 16:33:40 +00:00
d6a65b74e1
* initial version html generate After being made to change the master generate html based on markdown, ref #363 * change package name, repo to main * up port 80 on caddy server * install mux on travis build * generate sitemap * added robots.txt * set metatags on html page * update repo via exec get the most current readme * remove unnecessary lowdash assign * fix linter errors, remove unnecessary conversion, add binary to .gitignore * fix fonts, use domain-level assets
43 lines
557 B
CSS
Vendored
43 lines
557 B
CSS
Vendored
* {
|
|
max-width: 100%;
|
|
box-sizing: border-box;
|
|
font-family: "Fira Sans";
|
|
text-decoration: none;
|
|
font-weight: 300;
|
|
}
|
|
.awesome-logo {
|
|
max-width: 500px;
|
|
width: 100%;
|
|
margin: auto;
|
|
display: block;
|
|
}
|
|
|
|
a {
|
|
color: #669;
|
|
}
|
|
a:visited, h1, h2, h3, h4 {
|
|
color: #494368;
|
|
font-weight: 400;
|
|
}
|
|
h1 > a:nth-child(1) {
|
|
margin-left: 10px;
|
|
}
|
|
h1 > a img {
|
|
padding-right: 5px;
|
|
}
|
|
|
|
#content {
|
|
width: 100%;
|
|
padding: 40px 80px;
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
#content {
|
|
padding: 20px 40px;
|
|
}
|
|
}
|
|
@media (max-width: 420px) {
|
|
#content * {
|
|
word-wrap: break-word;
|
|
}
|
|
} |