jekyll-theme-crisp-wiki 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 19c8f90261d14e51fd5004ee25faa8d0359f503332998e38ecf36cd30eb1e4c3
4
- data.tar.gz: 579d2d2438afd4c44b3a8793029928bac7a4ca8a7a68c4aae49ff7ba4f937136
3
+ metadata.gz: 11b591e6adaffa2c79fc3e21e5352ac8e633b7b48337cb2f6daa1b1ed48a6953
4
+ data.tar.gz: 4044a00ef86328e9cf9a793184d715b50a327c2b479910aafdeb40f8d3141214
5
5
  SHA512:
6
- metadata.gz: 5b1e6c2e8b36d59757b6224132ceebc941d9bf009fdfae90bfab313b70765c719fb586b73bfd9fbdbe7bc48ce6ff7ceae4f7afb0d999b4d930436a173a0a775a
7
- data.tar.gz: 7a9d166cdb96b75f8721d1f906a3d4589fe6052c785dbf36227c979caf578791bfed1c1df9462aa638df759ffebc8b2ac5ba2d6eb0976423e66952960d97596f
6
+ metadata.gz: 31decb25a1349417172945b8b1e9b50edd3ad7ece5cff2dbfbf93576dfe878d37bcfbdbe1d4058b754f79ed4097e69bc1c20fed2a7ddfcb09a0b1d74b68e05c1
7
+ data.tar.gz: d456edbe68be714edc6f2c0aead3fae5a406661ac01b747959a6cd0ce26378268c5a08dc8207662a0fe53919bd6dca67be2d8447a528ffbb855bc7c2b38bdfc6
@@ -7,7 +7,7 @@ layout: null
7
7
  <title>{{ site.title }}</title>
8
8
  <meta charset="UTF-8">
9
9
  <meta name="viewport" content="width=device-width, initial-scale=1">
10
- <link rel="stylesheet" href="{{ site.baseurl }}/css/style.css">
10
+ <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/style.css">
11
11
  </head>
12
12
  <body>
13
13
  <div class="container">
@@ -15,8 +15,6 @@ layout: null
15
15
  <div class="section">
16
16
  <div class="section-wrap">
17
17
  <a href="{{ site.baseurl }}/">Wiki</a>
18
- <a href="{{ site.baseurl }}/home/">Home</a>
19
- <a href="{{ site.baseurl }}/about/">About</a>
20
18
  </div>
21
19
  </div>
22
20
  </header>
@@ -0,0 +1,106 @@
1
+ /*
2
+ * Theme of Crisp Wiki
3
+ * Copyright(c) David Zhang, 2016
4
+ */
5
+ * {
6
+ box-sizing: border-box;
7
+ }
8
+ html {
9
+ width: 100%;
10
+ font-size: 16px;
11
+ }
12
+ @media (max-width: 42rem) {
13
+ html {
14
+ font-size: 12px;
15
+ }
16
+ }
17
+ body {
18
+ margin: 0;
19
+ font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
20
+ font-size: 1rem;
21
+ -webkit-font-smoothing: antialiased;
22
+ color: #333;
23
+ background-color: #fbfbfb;
24
+ word-wrap: break-word;
25
+ text-align: center;
26
+ height: 100%;
27
+ }
28
+ footer {
29
+ text-align: center;
30
+ font-size: 1rem;
31
+ overflow: hidden;
32
+ margin-top: 2rem;
33
+ margin-bottom: 1.2rem;
34
+ }
35
+ a {
36
+ text-decoration: none;
37
+ color: #06c;
38
+ }
39
+ a:hover {
40
+ text-decoration: underline;
41
+ }
42
+ .container {
43
+ max-width: 42rem;
44
+ margin-left: auto;
45
+ margin-right: auto;
46
+ text-align: left;
47
+ margin-bottom: 3rem;
48
+ }
49
+ @media (max-width: 42rem) {
50
+ .container {
51
+ padding-left: .4rem;
52
+ padding-right: .4rem;
53
+ }
54
+ }
55
+ .menu {
56
+ font-size: 1rem;
57
+ font-weight: bold;
58
+ }
59
+ .menu a {
60
+ margin-right: 1rem;
61
+ }
62
+ .section {
63
+ text-align: left;
64
+ margin-top: 2rem;
65
+ }
66
+ .section-wrap {
67
+ margin-top: .6rem;
68
+ background-color: #ffffff;
69
+ box-shadow: 0 .1rem .2rem 0 #ddd;
70
+ border-radius: 4px;
71
+ padding: 1rem;
72
+ }
73
+ .section-wrap:hover {
74
+ box-shadow: 0 .1rem .4rem .1rem #ddd;
75
+ }
76
+ .section-item {
77
+ display: flex;
78
+ line-height: 1.25;
79
+ overflow: hidden;
80
+ width: 100%;
81
+ }
82
+ .section-item:first-of-type {
83
+ margin-bottom: 1rem;
84
+ }
85
+ .section-title {
86
+ }
87
+ .section-content {
88
+ padding-right: .5rem;
89
+ width: 37.6rem;
90
+ }
91
+ .title-q:before {
92
+ content: "Q";
93
+ display: inline-block;
94
+ width: 1rem;
95
+ padding-right: .5rem;
96
+ margin-right: .5rem;
97
+ border-right: .1rem solid #aaa;
98
+ }
99
+ .title-a:before {
100
+ content: "A";
101
+ display: inline-block;
102
+ width: 1rem;
103
+ padding-right: .5rem;
104
+ margin-right: .5rem;
105
+ border-right: .1rem solid #aaa;
106
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-crisp-wiki
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Zhang
@@ -62,6 +62,7 @@ files:
62
62
  - README.md
63
63
  - _data/wiki.yml
64
64
  - _layouts/wiki.html
65
+ - assets/css/style.css
65
66
  homepage: https://github.com/crispgm/wiki
66
67
  licenses:
67
68
  - MIT