Skip to content

Commit

Permalink
Update style
Browse files Browse the repository at this point in the history
  • Loading branch information
MBunel committed Jul 12, 2024
1 parent 9b598ce commit a51aa1f
Showing 1 changed file with 24 additions and 11 deletions.
35 changes: 24 additions & 11 deletions theme/static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ html {

header, footer {
font-family: "Libre Franklin", sans;
/* Border and shadow*/
box-shadow: 10px 10px 0 -5px var(--sapphire);
background: var(--mantle);
border: 1px solid var(--sapphire);
}

header {
Expand All @@ -129,8 +133,9 @@ header {
padding: 20px;
/* Font */
font-weight: bold;
margin-top: 10px;
/* Border */
border-bottom: 2px solid var(--on-background);
/* border-bottom: 2px solid var(--on-background); */
}

header nav {
Expand Down Expand Up @@ -173,15 +178,15 @@ footer {
margin-top: 2rem;
font-size: small;
line-height: 1;
border-top: 2px solid var(--on-background);
margin-bottom: 10px;
/* border-top: 2px solid var(--on-background); */
}

body {
/* Layout */
max-width: 70rem;
min-height: 100vh;
padding-left: 10px;
padding-right: 10px;
/* padding: 10px 10px 10px 10px; */
margin: auto;
display: flex;
flex-direction:column;
Expand Down Expand Up @@ -240,12 +245,17 @@ hgroup > p {
}



.org-src-container, blockquote {
box-shadow: 10px 10px 0 -5px var(--attention-1);
background: var(--mantle);
border: 1px solid var(--attention-1);

}

blockquote {
margin-bottom: 10px;
padding: 0.5em;
background-color: var(--mantle);
border-left: 4px solid var(--crust);
box-shadow: 0.1em 0.2em 0.2em var(--crust);
}

.csl-bib-body {
Expand Down Expand Up @@ -286,8 +296,6 @@ kbd {
/* Source Code */
.org-src-container {
padding: 10px;
box-shadow: 0.1em 0.2em 0.2em var(--crust);
background:var(--mantle);
}

.org-keyword {
Expand Down Expand Up @@ -333,6 +341,11 @@ tbody {
}

td,th {
padding:.3em .6em;
vertical-align:middle
padding: .3em .6em;
vertical-align: middle;
}

/* Images */
img {
max-width: 100%;
}

0 comments on commit a51aa1f

Please sign in to comment.