initial commit
This commit is contained in:
commit
f92932b947
44 changed files with 851 additions and 0 deletions
1
static/css/lightgallery.min.css
vendored
Executable file
1
static/css/lightgallery.min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
337
static/css/weblog.css
Normal file
337
static/css/weblog.css
Normal file
|
@ -0,0 +1,337 @@
|
|||
|
||||
/* Page */
|
||||
|
||||
body {
|
||||
font: 16px/24px "Avenir Next", "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
a[href] {
|
||||
color: #476286;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4 {
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
.site {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
flex-direction: column;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
|
||||
header {
|
||||
padding: 40px 0 0 0;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
font-size: 30px;
|
||||
line-height: 32px;
|
||||
margin: 0 auto;
|
||||
padding: 10px 10px 0 10px;
|
||||
max-width: 720px;
|
||||
color: #5B636E;
|
||||
}
|
||||
|
||||
/* Navigation */
|
||||
|
||||
nav {
|
||||
margin: auto;
|
||||
max-width: 720px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
list-style-type: none;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
nav ul > li {
|
||||
background-color: #fafafa;
|
||||
display: inline;
|
||||
float: left;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
font-size: 9pt;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.rss-icon {
|
||||
height: 14px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.pagination {
|
||||
text-align: center;
|
||||
margin: 30px auto;
|
||||
}
|
||||
|
||||
.pagination span {
|
||||
color: #dddddd;
|
||||
}
|
||||
|
||||
/* Articles */
|
||||
|
||||
.micropost {
|
||||
background-color: #F0F2F5;
|
||||
margin: 40px auto;
|
||||
padding: 10px;
|
||||
max-width: 780px;
|
||||
}
|
||||
|
||||
.post, .page, .post-groups {
|
||||
margin: 40px auto;
|
||||
max-width: 780px;
|
||||
}
|
||||
|
||||
.micropost > p, .post > p, .page > p {
|
||||
color: #666666;
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
margin: 0;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.post > p {
|
||||
margin: 20px auto;
|
||||
}
|
||||
|
||||
.micropost > a {
|
||||
font-size: 12px;
|
||||
color: #888888;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.post h2 {
|
||||
margin: 0;
|
||||
line-height: 32px;
|
||||
}
|
||||
|
||||
article.photo {
|
||||
border-radius: 5px;
|
||||
margin: 40px auto;
|
||||
max-width: 780px;
|
||||
overflow: hidden;
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
article.photo div {
|
||||
color: #ffffff;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: left;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
article.photo .title {
|
||||
background-color: #476286;
|
||||
font-size: 18pt;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
article.photo a {
|
||||
color: #ffffff;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
article.photo p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
article.photo img {
|
||||
-webkit-transition: -webkit-transform 4s ease 0s;
|
||||
-moz-transition: -moz-transform 4s ease 0s;
|
||||
-o-transition: -o-transform 4s ease 0s;
|
||||
transition: transform 4s ease 0s;
|
||||
-webkit-transform: scale3d(1, 1, 1);
|
||||
transform: scale3d(1, 1, 1);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
article.photo img:hover {
|
||||
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-2deg);
|
||||
transform: scale3d(1.1, 1.1, 1.1) rotate(-2deg);
|
||||
}
|
||||
|
||||
article .postmeta {
|
||||
line-height: 22px;
|
||||
color: #999999;
|
||||
margin: 0 auto;
|
||||
padding: 5px 0 0 0;
|
||||
}
|
||||
|
||||
.post-group {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.post-group-item {
|
||||
flex: auto;
|
||||
width: 40%;
|
||||
margin: 5px;
|
||||
font-size: 10pt;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.post-group-item:hover {
|
||||
background-color: #f6f6f6;
|
||||
}
|
||||
|
||||
.post-group-item h3 {
|
||||
color: #999999;
|
||||
font-size: 16pt;
|
||||
margin: 0;
|
||||
padding: 6px 0 0 6px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.post-group-item ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0 0 0 6px;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
|
||||
footer {
|
||||
background-color: #545454;
|
||||
color: #ffffff;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.footer_text {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin: auto;
|
||||
width: 720px;
|
||||
}
|
||||
|
||||
.footer_text h3 {
|
||||
color: #cccccc;
|
||||
}
|
||||
|
||||
.footer_text a {
|
||||
color: #cccccc;
|
||||
}
|
||||
|
||||
.footer_text > div {
|
||||
flex: 1;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#photos {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
}
|
||||
|
||||
.photo-item {
|
||||
display: block;
|
||||
height: 75px;
|
||||
margin: 1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
width: 75px;
|
||||
}
|
||||
|
||||
.photo-item img {
|
||||
flex: auto;
|
||||
-webkit-transition: -webkit-transform 0.15s ease 0s;
|
||||
-moz-transition: -moz-transform 0.15s ease 0s;
|
||||
-o-transition: -o-transform 0.15s ease 0s;
|
||||
transition: transform 0.15s ease 0s;
|
||||
-webkit-transform: scale3d(1, 1, 1);
|
||||
transform: scale3d(1, 1, 1);
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.photo-item img:hover {
|
||||
-webkit-transform: scale3d(1.05, 1.05, 1.05);
|
||||
transform: scale3d(1.05, 1.05, 1.05);
|
||||
opacity: 1.0;
|
||||
}
|
||||
|
||||
.footer_copyright {
|
||||
color: #999999;
|
||||
font: 12px/20px "Avenir Next", "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||
margin: auto;
|
||||
padding: 10px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer_copyright a {
|
||||
color: #cccccc;
|
||||
}
|
||||
|
||||
@media screen
|
||||
and (max-width: 780px) {
|
||||
|
||||
.footer_text {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.footer_text > div {
|
||||
flex: auto;
|
||||
width: 100%;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
#photos {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
article {
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
header {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
font-size: 22px;
|
||||
line-height: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
nav ul > li {
|
||||
background-color: #fafafa;
|
||||
display:list-item;
|
||||
float: none;
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
border-bottom: #f2f2f2 1px solid;
|
||||
}
|
||||
|
||||
nav ul:first-child {
|
||||
border-top: #f2f2f2 1px solid;
|
||||
}
|
||||
|
||||
.post-group-item {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue