This commit is contained in:
2025-07-18 10:35:53 +09:00
parent e19170cdff
commit d89855338b
4 changed files with 45 additions and 26 deletions

View File

@@ -1,3 +1,5 @@
@import url('./style.css');
.pds-container {
}
@@ -19,7 +21,7 @@
.pds-search-form {
display: flex;
justify-content: center;
margin: 0px 20px;
padding: 0px 20px;
}
.form-group {
@@ -28,19 +30,25 @@
}
.form-group input {
padding: 10px;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
border-radius: 4px 0 0 4px;
font-size: 14px;
width: 600px;
width: 600px;
outline: none;
transition: box-shadow 0.2s, border-color 0.2s;
}
.form-group input:focus {
border-color: var(--theme-color, #f40);
}
.form-group button {
padding: 10px 15px;
padding: 9px 15px;
background: #1976d2;
color: white;
border: none;
border-radius: 4px;
border-radius: 0 4px 4px 0;
cursor: pointer;
display: flex;
align-items: center;

View File

@@ -139,7 +139,7 @@ a.view-markdown:any-link {
grid-area: header;
background: #ffffff;
border-bottom: 1px solid #d1d9e0;
padding: 16px 24px;
padding: 17px 24px;
position: sticky;
top: 0;
z-index: 100;
@@ -723,7 +723,7 @@ article.article-content {
.footer-social a {
color: var(--dark-gray) !important;
text-decoration: none !important;
font-size: 20px;
font-size: 25px;
transition: all 0.2s ease;
}