init
This commit is contained in:
parent
7d49f2c4d7
commit
b5d6a8af1a
@ -12,6 +12,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<nav>
|
<nav>
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
|
<h1>{{ .Site.Title }}</h1>
|
||||||
{{ range .Site.Menus.main }}
|
{{ range .Site.Menus.main }}
|
||||||
<li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
|
<li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
body {
|
body {
|
||||||
font-family: Optima, Candara, Calibri, Arial, sans-serif;
|
font-family: "Lucida Console", Monaco, monospace;
|
||||||
|
font-size: 85%;
|
||||||
}
|
}
|
||||||
code {
|
code {
|
||||||
font-family: "Lucida Console", Monaco, monospace;
|
font-family: "Lucida Console", Monaco, monospace;
|
||||||
|
@ -3,6 +3,12 @@ body {
|
|||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
background: #0f0f11;
|
||||||
|
color:#fbfaff;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #eae6f8;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* header and footer areas */
|
/* header and footer areas */
|
||||||
@ -10,11 +16,11 @@ body {
|
|||||||
.menu li { display: inline-block;}
|
.menu li { display: inline-block;}
|
||||||
.article-meta, .menu a {
|
.article-meta, .menu a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background: #eee;
|
background:#0f0f11;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
.menu, .article-meta, footer { text-align: center; }
|
.article-meta, footer { text-align: center;}
|
||||||
.title { font-size: 1.1em; }
|
.title { font-size: 1.1em; }
|
||||||
footer a { text-decoration: none; }
|
footer a { text-decoration: none; }
|
||||||
hr {
|
hr {
|
||||||
@ -25,11 +31,11 @@ hr {
|
|||||||
/* code */
|
/* code */
|
||||||
pre {
|
pre {
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
box-shadow: 5px 5px 5px #eee;
|
/*box-shadow: 5px 5px 5px #eee;*/
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
code { background: #f9f9f9; }
|
code { background: #292929; }
|
||||||
pre code { background: none; }
|
pre code { background: none; }
|
||||||
|
|
||||||
/* misc elements */
|
/* misc elements */
|
||||||
@ -43,9 +49,7 @@ blockquote {
|
|||||||
|
|
||||||
table {
|
table {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
border-top: 1px solid #666;
|
|
||||||
border-bottom: 1px solid #666;
|
|
||||||
}
|
}
|
||||||
table thead th { border-bottom: 1px solid #ddd; }
|
table thead th { border-bottom: 1px solid #2f3035; }
|
||||||
th, td { padding: 5px; }
|
th, td { padding: 5px; }
|
||||||
thead, tfoot, tr:nth-child(even) { background: #eee; }
|
thead, tfoot, tr:nth-child(even) { background: #2a2a2e; }
|
||||||
|
Loading…
Reference in New Issue
Block a user