refactor: Remove redundant root CSS files

Removed layouts/css/default.css and static/css/style.css as themes now provide their own CSS, making these files obsolete.
This commit is contained in:
Stig-Ørjan Smelror 2025-05-31 00:03:08 +02:00
parent 3dad33a939
commit 8ffd19a0c4
2 changed files with 0 additions and 141 deletions

View File

@ -1,110 +0,0 @@
/* Default Theme for qsgen3 */
body {
font-family: sans-serif;
line-height: 1.6;
margin: 20px auto;
padding: 0 20px;
max-width: 800px;
background-color: #fdfdfd;
color: #333;
}
header {
background-color: #eee;
padding: 1em 0;
margin-bottom: 2em;
text-align: center;
}
header h1 a {
color: #333;
text-decoration: none;
}
header .tagline {
color: #555;
font-size: 0.9em;
}
nav ul {
list-style-type: none;
padding: 0;
text-align: center;
}
nav ul li {
display: inline;
margin-right: 15px;
}
nav ul li a {
text-decoration: none;
color: #007bff;
}
nav ul li a:hover {
text-decoration: underline;
}
article header {
background-color: transparent;
padding: 0;
margin-bottom: 1em;
text-align: left;
}
h1, h2, h3, h4, h5, h6 {
color: #333;
margin-top: 1.5em;
margin-bottom: 0.5em;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
img {
max-width: 100%;
height: auto;
}
pre {
background-color: #f0f0f0;
padding: 15px;
overflow-x: auto;
border-radius: 4px;
}
code {
font-family: monospace;
background-color: #f0f0f0;
padding: 0.2em 0.4em;
border-radius: 3px;
}
pre code {
padding: 0;
background-color: transparent;
}
blockquote {
border-left: 4px solid #ccc;
padding-left: 15px;
margin-left: 0;
font-style: italic;
color: #555;
}
footer {
text-align: center;
margin-top: 3em;
padding-top: 1em;
border-top: 1px solid #eee;
font-size: 0.9em;
color: #777;
}

View File

@ -1,31 +0,0 @@
/* Basic styling - feel free to replace */
body {
font-family: sans-serif;
line-height: 1.6;
margin: 20px;
background-color: #f4f4f4;
color: #333;
}
header h1 a {
color: #333;
text-decoration: none;
}
header p {
font-style: italic;
color: #666;
}
main {
background-color: #fff;
padding: 20px;
border-radius: 5px;
}
footer {
text-align: center;
margin-top: 20px;
font-size: 0.9em;
color: #777;
}