Skip to content
Snippets Groups Projects
Verified Commit 4d798d93 authored by Isabella Skořepová's avatar Isabella Skořepová
Browse files

Multiple unrelated changes

- Changed favicon
- Article width is more narrow
parent 9f2c5ee4
Branches
No related tags found
No related merge requests found
Showing
with 113 additions and 57 deletions
...@@ -11,27 +11,38 @@ $success-color: color("green", "base"); ...@@ -11,27 +11,38 @@ $success-color: color("green", "base");
$error-color: color("red", "base"); $error-color: color("red", "base");
$link-color: color("light-blue", "darken-1"); $link-color: color("light-blue", "darken-1");
$small-screen: 650px; /*$small-screen: 650px;
$small-screen-up: 651px; $small-screen-up: 651px;*/
@import "materialize.scss"; @import "materialize.scss";
/* overall page look */ /* overall page look */
$p-max-width: 512px;
#content, .container.nav-wrapper { #content, .container.nav-wrapper {
width: 86%; width: 86%;
} }
html {
font-size: 16px;
}
p:has(img) {
display: inline;
max-width: unset;
}
/* Article list style */ /* Article list style */
.block.article { .article {
overflow: hidden; overflow: hidden;
text-align:justify; text-align:justify;
margin: 10px 0; margin: 10px 0;
background-color: white; background-color: white;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
} h5 {
font-size: 1.3rem;
.article h5 { margin: 0 10px;
font-size: 1.3rem; }
.head-title {
margin: 10px 0;
}
} }
.leadimage { .leadimage {
...@@ -52,13 +63,15 @@ footer.page-footer { ...@@ -52,13 +63,15 @@ footer.page-footer {
color: white; color: white;
} }
#all { #all {
background-color: #fafafa;
position:relative; position:relative;
overflow-y: hidden; overflow-y: hidden;
min-height: 100vh; min-height: 100vh;
} }
#content, #search { #content, #search {
margin-bottom: 90px; padding-bottom: 20px;
margin-top: 104px; padding-top: 104px;
margin: 0 auto;
} }
html, body { html, body {
min-height: 100vh; min-height: 100vh;
...@@ -115,6 +128,7 @@ html, body { ...@@ -115,6 +128,7 @@ html, body {
} }
nav { nav {
background-color: $primary-color;
line-height: 64px; line-height: 64px;
} }
@media #{$medium-and-down} { @media #{$medium-and-down} {
...@@ -124,6 +138,7 @@ nav { ...@@ -124,6 +138,7 @@ nav {
} }
nav.subnav { nav.subnav {
background-color: $primary-color-light;
margin-top: -16px; margin-top: -16px;
transition: 0.3s; transition: 0.3s;
height: 40px; height: 40px;
...@@ -198,57 +213,98 @@ nav.subnav li { ...@@ -198,57 +213,98 @@ nav.subnav li {
} }
/* Article */ /* Article */
h2#title { .type-article {
margin-bottom: 0px; p {
} padding: 0 .5rem;
text-align: justify;
display: block;
max-width: $p-max-width;
margin: 0 auto;
}
h2#title {
margin: 0px;
}
.author { .metadata {
margin-bottom: 1rem; margin-bottom: 1rem;
} text-align: center;
}
.type-article .container { article {
max-width: 1024px; text-align: center;
}
.article article {
text-align: justify;
}
th {
padding: 5px 5px 0px 5px;
font-weight: unset;
}
td {
padding: 5px;
}
.article {
h3 {
font-size: 2rem;
padding-bottom: 3px;
border-bottom: solid #d0d0d0 1px ;
} }
h4 { th {
font-size: 1.6rem; padding: 5px 5px 0px 5px;
font-weight: unset;
} }
h5 { td {
font-size: 1.1rem; padding: 5px;
} }
h6 { .section {
font-size: 1rem; background-color:white;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
.has-image {
text-align: center;
}
img {
max-width: 100%;
}
ul, ol {
text-align: left;
padding: 0 .5rem;
max-width: $p-max-width;
margin: 10px auto;
}
h3, h4, h5, h6 {
max-width: $p-max-width;
margin: 10px auto;
padding: 0 .5rem;
text-align: left;
}
h3 {
font-size: 2rem;
padding-bottom: 3px;
border-bottom: solid #d0d0d0 1px ;
}
h4 {
font-size: 1.6rem;
}
h5 {
font-size: 1.1rem;
}
h6 {
font-size: 1rem;
}
} }
}
pre { pre {
padding: 2px 0 2px 10px; padding: 2px 0 2px 10px;
background-color: #2b2b2b; background-color: #2b2b2b;
} display:inline-block;
code { text-align: left;
padding: 2px 5px; min-width: 508px;
color: #bababa; max-width:100%;
background-color: #2b2b2b; }
font-family: "Menlo", "Liberation Mono", "Consolas", "DejaVu Sans Mono", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; code {
} padding: 2px 5px;
pre code { color: #bababa;
padding: 0; background-color: #2b2b2b;
font-family: "Menlo", "Liberation Mono", "Consolas", "DejaVu Sans Mono", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace;
}
pre code {
padding: 0;
}
article ul li {list-style: circle inside}
@media #{$small-and-down} {
#content {
width: 100%;
}
pre {
min-width: 100%;
}
}
} }
.article ul li {list-style: circle outside}
@import "search.scss" @import "search.scss"
static/theme/favicons/android-chrome-144x144.png

1.2 KiB | W: | H:

static/theme/favicons/android-chrome-144x144.png

1.85 KiB | W: | H:

static/theme/favicons/android-chrome-144x144.png
static/theme/favicons/android-chrome-144x144.png
static/theme/favicons/android-chrome-144x144.png
static/theme/favicons/android-chrome-144x144.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/android-chrome-192x192.png

1.49 KiB | W: | H:

static/theme/favicons/android-chrome-192x192.png

2.44 KiB | W: | H:

static/theme/favicons/android-chrome-192x192.png
static/theme/favicons/android-chrome-192x192.png
static/theme/favicons/android-chrome-192x192.png
static/theme/favicons/android-chrome-192x192.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/android-chrome-36x36.png

618 B | W: | H:

static/theme/favicons/android-chrome-36x36.png

700 B | W: | H:

static/theme/favicons/android-chrome-36x36.png
static/theme/favicons/android-chrome-36x36.png
static/theme/favicons/android-chrome-36x36.png
static/theme/favicons/android-chrome-36x36.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/android-chrome-48x48.png

693 B | W: | H:

static/theme/favicons/android-chrome-48x48.png

786 B | W: | H:

static/theme/favicons/android-chrome-48x48.png
static/theme/favicons/android-chrome-48x48.png
static/theme/favicons/android-chrome-48x48.png
static/theme/favicons/android-chrome-48x48.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/android-chrome-72x72.png

788 B | W: | H:

static/theme/favicons/android-chrome-72x72.png

975 B | W: | H:

static/theme/favicons/android-chrome-72x72.png
static/theme/favicons/android-chrome-72x72.png
static/theme/favicons/android-chrome-72x72.png
static/theme/favicons/android-chrome-72x72.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/android-chrome-96x96.png

959 B | W: | H:

static/theme/favicons/android-chrome-96x96.png

1.31 KiB | W: | H:

static/theme/favicons/android-chrome-96x96.png
static/theme/favicons/android-chrome-96x96.png
static/theme/favicons/android-chrome-96x96.png
static/theme/favicons/android-chrome-96x96.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/apple-touch-icon-114x114.png

1.06 KiB | W: | H:

static/theme/favicons/apple-touch-icon-114x114.png

1.22 KiB | W: | H:

static/theme/favicons/apple-touch-icon-114x114.png
static/theme/favicons/apple-touch-icon-114x114.png
static/theme/favicons/apple-touch-icon-114x114.png
static/theme/favicons/apple-touch-icon-114x114.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/apple-touch-icon-120x120.png

1.04 KiB | W: | H:

static/theme/favicons/apple-touch-icon-120x120.png

1.21 KiB | W: | H:

static/theme/favicons/apple-touch-icon-120x120.png
static/theme/favicons/apple-touch-icon-120x120.png
static/theme/favicons/apple-touch-icon-120x120.png
static/theme/favicons/apple-touch-icon-120x120.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/apple-touch-icon-144x144.png

1.2 KiB | W: | H:

static/theme/favicons/apple-touch-icon-144x144.png

1.52 KiB | W: | H:

static/theme/favicons/apple-touch-icon-144x144.png
static/theme/favicons/apple-touch-icon-144x144.png
static/theme/favicons/apple-touch-icon-144x144.png
static/theme/favicons/apple-touch-icon-144x144.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/apple-touch-icon-152x152.png

1.28 KiB | W: | H:

static/theme/favicons/apple-touch-icon-152x152.png

1.61 KiB | W: | H:

static/theme/favicons/apple-touch-icon-152x152.png
static/theme/favicons/apple-touch-icon-152x152.png
static/theme/favicons/apple-touch-icon-152x152.png
static/theme/favicons/apple-touch-icon-152x152.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/apple-touch-icon-180x180.png

1.36 KiB | W: | H:

static/theme/favicons/apple-touch-icon-180x180.png

1.92 KiB | W: | H:

static/theme/favicons/apple-touch-icon-180x180.png
static/theme/favicons/apple-touch-icon-180x180.png
static/theme/favicons/apple-touch-icon-180x180.png
static/theme/favicons/apple-touch-icon-180x180.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/apple-touch-icon-57x57.png

760 B | W: | H:

static/theme/favicons/apple-touch-icon-57x57.png

773 B | W: | H:

static/theme/favicons/apple-touch-icon-57x57.png
static/theme/favicons/apple-touch-icon-57x57.png
static/theme/favicons/apple-touch-icon-57x57.png
static/theme/favicons/apple-touch-icon-57x57.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/apple-touch-icon-60x60.png

762 B | W: | H:

static/theme/favicons/apple-touch-icon-60x60.png

794 B | W: | H:

static/theme/favicons/apple-touch-icon-60x60.png
static/theme/favicons/apple-touch-icon-60x60.png
static/theme/favicons/apple-touch-icon-60x60.png
static/theme/favicons/apple-touch-icon-60x60.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/apple-touch-icon-72x72.png

788 B | W: | H:

static/theme/favicons/apple-touch-icon-72x72.png

863 B | W: | H:

static/theme/favicons/apple-touch-icon-72x72.png
static/theme/favicons/apple-touch-icon-72x72.png
static/theme/favicons/apple-touch-icon-72x72.png
static/theme/favicons/apple-touch-icon-72x72.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/apple-touch-icon-76x76.png

814 B | W: | H:

static/theme/favicons/apple-touch-icon-76x76.png

940 B | W: | H:

static/theme/favicons/apple-touch-icon-76x76.png
static/theme/favicons/apple-touch-icon-76x76.png
static/theme/favicons/apple-touch-icon-76x76.png
static/theme/favicons/apple-touch-icon-76x76.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/apple-touch-icon-precomposed.png

2.26 KiB | W: | H:

static/theme/favicons/apple-touch-icon-precomposed.png

2.44 KiB | W: | H:

static/theme/favicons/apple-touch-icon-precomposed.png
static/theme/favicons/apple-touch-icon-precomposed.png
static/theme/favicons/apple-touch-icon-precomposed.png
static/theme/favicons/apple-touch-icon-precomposed.png
  • 2-up
  • Swipe
  • Onion skin
static/theme/favicons/apple-touch-icon.png

1.36 KiB | W: | H:

static/theme/favicons/apple-touch-icon.png

1.92 KiB | W: | H:

static/theme/favicons/apple-touch-icon.png
static/theme/favicons/apple-touch-icon.png
static/theme/favicons/apple-touch-icon.png
static/theme/favicons/apple-touch-icon.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
<browserconfig> <browserconfig>
<msapplication> <msapplication>
<tile> <tile>
<square70x70logo src="/favicons/mstile-70x70.png"/> <square70x70logo src="{{ config.baseurl }}/theme/favicons/mstile-70x70.png?v=lkk0Gr4nzB"/>
<square150x150logo src="/favicons/mstile-150x150.png"/> <square150x150logo src="{{ config.baseurl }}/theme/favicons/mstile-150x150.png?v=lkk0Gr4nzB"/>
<square310x310logo src="/favicons/mstile-310x310.png"/> <square310x310logo src="{{ config.baseurl }}/theme/favicons/mstile-310x310.png?v=lkk0Gr4nzB"/>
<wide310x150logo src="/favicons/mstile-310x150.png"/> <wide310x150logo src="{{ config.baseurl }}/theme/favicons/mstile-310x150.png?v=lkk0Gr4nzB"/>
<TileColor>#2d89ef</TileColor> <TileColor>#2d89ef</TileColor>
</tile> </tile>
</msapplication> </msapplication>
......
static/theme/favicons/favicon-16x16.png

608 B | W: | H:

static/theme/favicons/favicon-16x16.png

497 B | W: | H:

static/theme/favicons/favicon-16x16.png
static/theme/favicons/favicon-16x16.png
static/theme/favicons/favicon-16x16.png
static/theme/favicons/favicon-16x16.png
  • 2-up
  • Swipe
  • Onion skin
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment