Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pacollins/hugo-future-imperfect-slim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorPatrick Collins <thepatrickcollins@gmail.com>2017-10-12 17:25:29 +0300
committerGitHub <noreply@github.com>2017-10-12 17:25:29 +0300
commit19d472ac1451f59800307f7f9d1eeb9043355cbe (patch)
treeab2ae415fe73374d5c8400a9c9e74312b481f4a8 /static
parent94207f4938a24d36ef5a891c7babea7b292d6d9a (diff)
Adding patches from lfkeitel (#57)
* Use linktitle in item type The linktitle was available in the example item types but it didn't do anything. I changed the link on the right side of an item use linktitle for the, well, title of the link. I also made it open the link in a new tab. * Support Markdown todo lists * Show uncategorized items as "Uncategorized" in category list
Diffstat (limited to 'static')
-rw-r--r--static/css/main.css14
1 files changed, 9 insertions, 5 deletions
diff --git a/static/css/main.css b/static/css/main.css
index d1ac152..1f33a18 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -636,7 +636,6 @@
height: 5em;
}
- input[type="checkbox"],
input[type="radio"] {
-moz-appearance: none;
-webkit-appearance: none;
@@ -650,7 +649,6 @@
z-index: -1;
}
- input[type="checkbox"] + label,
input[type="radio"] + label {
text-decoration: none;
color: #646464;
@@ -663,7 +661,6 @@
position: relative;
}
- input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
@@ -684,7 +681,6 @@
width: 1.65em;
}
- input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
background: #3c3b3b;
border-color: #3c3b3b;
@@ -692,7 +688,6 @@
content: '\f00c';
}
- input[type="checkbox"]:focus + label:before,
input[type="radio"]:focus + label:before {
border: solid 1px #2ebaae;
}
@@ -833,6 +828,15 @@
/* List */
+ ul.task-list {
+ list-style: none;
+ }
+
+ .task-list-item {
+ position: relative;
+ top: -1px;
+ }
+
ol {
list-style: decimal;
margin: 0 0 2em 0;