Added styling

This commit is contained in:
2025-02-04 19:57:00 +01:00
parent fbe6366329
commit 3e5daff525
2 changed files with 64 additions and 0 deletions

View File

@@ -4,6 +4,49 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
html {
font-family: Arial, sans-serif;
font-size: 1.3em;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
body {
max-width: 800px;
color: #fbfbfe;
background-color: #1c1b22;
display: flex;
flex-direction: column;
align-items: center;
}
ul {
list-style-type: none;
padding: 0;
}
li:nth-child(1){
display: none;
}
li {
margin: 1em 0;
padding: 8px;
border-radius: 8px;
border-style: solid;
border-width: 1px;
border-color: #aaa;
}
li::before {
content: "📝";
margin-right: 8px;
}
a {
color: #fbfbfe;
text-decoration: none;
}
</style>
</head>
<body>
{{content}}

View File

@@ -4,6 +4,27 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
html {
font-family: Arial, sans-serif;
font-size: 1.3em;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
body {
max-width: 800px;
color: #fbfbfe;
background-color: #1c1b22;
display: flex;
flex-direction: column;
align-items: center;
}
img {
max-width: 100%;
}
</style>
</head>
<body>
{{markdown}}