1
0
mirror of https://github.com/tiyn/beaker-blog.git synced 2026-02-22 04:44:48 +01:00

added search page, updated style

This commit is contained in:
2024-04-19 23:36:01 +02:00
parent a936fd5ee6
commit 8796169ff7
16 changed files with 382 additions and 80 deletions

View File

@@ -157,6 +157,10 @@ footer .center {
}
}
form {
margin-bottom: 40px;
}
.entry {
border-radius: 0 10px 30px 0;
margin-bottom: 20px;
@@ -186,6 +190,15 @@ h3 {
padding-bottom: 0;
}
.blogarchive h1:first-child {
padding-bottom: 0;
}
.blogarchive h2:first-child {
padding-top: 0;
padding-bottom: 0;
}
.entry ul {
padding-left: 20;
}
@@ -216,3 +229,28 @@ code {
white-space: pre;
display: inline-block
}
form.search input[type=text] {
padding: 10px;
font-size: 17px;
border: 1px solid grey;
float: left;
width: 50%;
background: #f1f1f1;
}
form.search button[type=submit] {
float: left;
width: 5%;
padding: 12px;
font-size: 17px;
border: 1px solid grey;
border-left: none; /* Prevent double borders */
cursor: pointer;
}
form.search::after {
content: "";
clear: both;
display: table;
}