mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2024-11-21 07:46:30 -05:00
Center images, color shift
This commit is contained in:
parent
e27a7a1f76
commit
7b7136151b
2 changed files with 9 additions and 7 deletions
|
@ -269,10 +269,10 @@ main .e-content pre {
|
||||||
}
|
}
|
||||||
|
|
||||||
main .e-content hr {
|
main .e-content hr {
|
||||||
height: 0.25em;
|
height: 0.2rem;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 24px 0;
|
margin: 24px 0;
|
||||||
background-color: #e1e4e8;
|
background-color: #d2c9c9;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -434,6 +434,9 @@ main .e-content table td {
|
||||||
}
|
}
|
||||||
|
|
||||||
main .e-content img {
|
main .e-content img {
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
background-color: #f6f6f6;
|
background-color: #f6f6f6;
|
||||||
|
|
|
@ -2,9 +2,11 @@
|
||||||
** General
|
** General
|
||||||
*/
|
*/
|
||||||
:root {
|
:root {
|
||||||
--bg-color: #efefef;
|
--bg-color: #f2f0e9;
|
||||||
|
--bg-color: #f6f4ef;
|
||||||
|
--bg-color: #faf9f6;
|
||||||
--acent-color: #5c3c2e;
|
--acent-color: #5c3c2e;
|
||||||
--text-color: #313131;
|
--text-color: #020101;
|
||||||
--text-font: 'IBM Plex Mono', sans-serif;
|
--text-font: 'IBM Plex Mono', sans-serif;
|
||||||
--header-font: 'IBM Plex Mono', monospace;
|
--header-font: 'IBM Plex Mono', monospace;
|
||||||
--header-color: black;
|
--header-color: black;
|
||||||
|
@ -18,8 +20,6 @@ html, body {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background-color: var(--bg-color);
|
background-color: var(--bg-color);
|
||||||
/* background-image: url(/img/winter.png); */
|
|
||||||
background-color: #fafafa;
|
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-family: var(--text-font);
|
font-family: var(--text-font);
|
||||||
|
@ -82,7 +82,6 @@ h1, h2, h3, h4, h5, h6 {
|
||||||
padding: 0.25rem;
|
padding: 0.25rem;
|
||||||
padding-left: 3rem;
|
padding-left: 3rem;
|
||||||
border-bottom: 1px dashed var(--acent-color);
|
border-bottom: 1px dashed var(--acent-color);
|
||||||
background-color: #fafafa;
|
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
color: var(--header-color);
|
color: var(--header-color);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue