Compare commits

...

2 commits

Author SHA1 Message Date
e43a1a7b56 make viewport responsive 2023-07-17 23:23:30 +02:00
575ab86454 optimize image scaling 2023-07-13 16:17:29 +02:00
2 changed files with 8 additions and 1 deletions

View file

@ -2,6 +2,7 @@
<html lang="{{ site.language }}"> <html lang="{{ site.language }}">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title if title else site.title }}</title> <title>{{ title if title else site.title }}</title>
<link rel="stylesheet" href="/css/style.css"/> <link rel="stylesheet" href="/css/style.css"/>

View file

@ -79,6 +79,12 @@ time,
border-bottom: 1px dotted rgb(219, 103, 167); border-bottom: 1px dotted rgb(219, 103, 167);
} }
.article_header {
img {
width: 100%;
}
}
.related { .related {
margin-top: 18px; margin-top: 18px;
border-top: 1px dotted rgb(219, 103, 167); border-top: 1px dotted rgb(219, 103, 167);
@ -105,7 +111,7 @@ time,
} }
img { img {
max-width: 75%; max-width: 100%;
} }
.tag { .tag {