forked from realaravinth/libmedium
- run build script when CSS file is changed
- typeset posts document
This commit is contained in:
parent
847afe1bdd
commit
e05687262f
2 changed files with 42 additions and 2 deletions
2
build.rs
2
build.rs
|
@ -23,5 +23,5 @@ fn main() {
|
||||||
.expect("error in git command, is git installed?");
|
.expect("error in git command, is git installed?");
|
||||||
let git_hash = String::from_utf8(output.stdout).unwrap();
|
let git_hash = String::from_utf8(output.stdout).unwrap();
|
||||||
println!("cargo:rustc-env=GIT_HASH={}", git_hash);
|
println!("cargo:rustc-env=GIT_HASH={}", git_hash);
|
||||||
println!("cargo:rerun-if-changed=src/schema2.graphql");
|
println!("cargo:rerun-if-changed=src/schema2.graphql,templates/main.css");
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,36 @@
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
font-family: "Times New Roman", Times, serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: rgb(0, 86, 179);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: rgb(0, 86, 179);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
color: #333;
|
||||||
|
font-family: Georgia, "Times New Roman", Times, serif;
|
||||||
|
/* font-size: 1.25rem; */
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.55rem;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -10,7 +40,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
width: 60%;
|
width: 35em;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -23,9 +53,19 @@ p {
|
||||||
img {
|
img {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
max-width: 80%;
|
max-width: 80%;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
font-family: monospace;
|
||||||
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1200px) {
|
@media screen and (max-width: 1200px) {
|
||||||
|
html {
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 1.34rem;
|
||||||
|
}
|
||||||
main {
|
main {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue