Fix theming and fix theme switcher bug (#14)
* Fix theming and fix theme switcher bug * Fix css comment and remove old js
This commit is contained in:
@@ -6,7 +6,8 @@ html {
|
||||
|
||||
/* HEADER */
|
||||
.header {
|
||||
background-color: #bbb;
|
||||
background-color: rgb(238, 238, 238);
|
||||
box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 2px 0px;
|
||||
color: black;
|
||||
height: 70px;
|
||||
left: 0;
|
||||
@@ -86,6 +87,7 @@ html {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/** COMMON **/
|
||||
/* TAGS */
|
||||
.post-tags {
|
||||
list-style-type: none;
|
||||
@@ -105,6 +107,24 @@ html {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* CODE BLOCKS */
|
||||
code,
|
||||
pre {
|
||||
background-color: #eee !important;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-size: 0.95rem;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
code {
|
||||
box-decoration-break: clone;
|
||||
padding: 0 3px;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
/* SINGLE */
|
||||
#content {
|
||||
width: 810px;
|
||||
|
||||
Reference in New Issue
Block a user