Move themes.css into general.css as it is used on every page
This commit is contained in:
@@ -1,15 +1,36 @@
|
||||
:root {
|
||||
--primary-color: #272736;
|
||||
--text-color: #ffffeb;
|
||||
|
||||
/* Overriding DP DS */
|
||||
--body-background: var(--primary-color);
|
||||
--body-color: var(--text-color);
|
||||
|
||||
--nav-color: var(--primary-color);
|
||||
--nav-background: var(--text-color);
|
||||
|
||||
--a-color: var(--text-color);
|
||||
}
|
||||
|
||||
nav {
|
||||
border-bottom-left-radius: 5px;
|
||||
border-bottom-right-radius: 5px;
|
||||
}
|
||||
|
||||
.question {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
:root {
|
||||
--primary-color: #ffffeb;
|
||||
--text-color: #272736;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 420px) {
|
||||
#app {
|
||||
margin-left: 0vw;
|
||||
margin-right: 0vw;
|
||||
}
|
||||
}
|
||||
|
||||
.question {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
:root {
|
||||
--primary-color: #272736;
|
||||
--text-color: #ffffeb;
|
||||
|
||||
/* Overriding DP DS */
|
||||
--body-background: var(--primary-color);
|
||||
--body-color: var(--text-color);
|
||||
|
||||
--nav-color: var(--primary-color);
|
||||
--nav-background: var(--text-color);
|
||||
|
||||
--a-color: var(--text-color);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
:root {
|
||||
--primary-color: #ffffeb;
|
||||
--text-color: #272736;
|
||||
}
|
||||
}
|
||||
@@ -10,7 +10,6 @@
|
||||
href="https://cdn.statically.io/gh/dragonprojects/dragondesign/master/main.min.css"
|
||||
media="all"
|
||||
>
|
||||
<link defer rel="stylesheet" href="css/themes.css" media="all">
|
||||
<link defer rel="stylesheet" href="css/general.css" media="all">
|
||||
|
||||
<script defer type="module" src="index.mjs"></script>
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
href="https://cdn.statically.io/gh/dragonprojects/dragondesign/master/main.min.css"
|
||||
media="all"
|
||||
>
|
||||
<link defer rel="stylesheet" href="css/themes.css" media="all">
|
||||
<link defer rel="stylesheet" href="css/general.css" media="all">
|
||||
|
||||
<script defer type="module" src="posts.mjs"></script>
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
href="https://cdn.statically.io/gh/dragonprojects/dragondesign/master/main.min.css"
|
||||
media="all"
|
||||
>
|
||||
<link defer rel="stylesheet" href="css/themes.css" media="all">
|
||||
<link defer rel="stylesheet" href="css/general.css" media="all">
|
||||
|
||||
</head>
|
||||
|
||||
Reference in New Issue
Block a user