jekyll-theme-penumbra 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +20 -20
- data/README.md +26 -26
- data/_config.yml +20 -20
- data/_includes/color-scheme.html +7 -7
- data/_includes/head-custom-google-analytics.html +10 -10
- data/_includes/head-custom.html +12 -12
- data/_includes/header.html +16 -16
- data/_includes/ie-support.html +2 -2
- data/_includes/links-mobile.html +6 -6
- data/_includes/sidebar.html +8 -8
- data/_layouts/default.html +35 -35
- data/_layouts/post.html +14 -14
- data/_sass/colors.scss +126 -126
- data/_sass/fonts.scss +55 -55
- data/_sass/jekyll-theme-penumbra.scss +360 -360
- data/_sass/penumbra.scss +4 -4
- data/_sass/rouge-github.scss +219 -219
- data/assets/css/colors-auto-default-dark.scss +16 -16
- data/assets/css/colors-auto.scss +14 -14
- data/assets/css/colors-dark.scss +14 -14
- data/assets/css/colors-light.scss +8 -8
- data/assets/css/style.scss +75 -75
- data/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg +336 -336
- data/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg +334 -334
- data/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.svg +337 -337
- data/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.svg +335 -335
- data/assets/js/footer.fix.js +15 -15
- data/assets/js/scale.fix.js +27 -27
- metadata +8 -7
data/assets/css/style.scss
CHANGED
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
---
|
|
2
|
-
---
|
|
3
|
-
|
|
4
|
-
@import "jekyll-theme-penumbra";
|
|
5
|
-
|
|
6
|
-
.sidebar {
|
|
7
|
-
width:200px;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.img-circle {
|
|
11
|
-
-webkit-border-radius: 50%;
|
|
12
|
-
-moz-border-radius: 50%;
|
|
13
|
-
border-radius: 50%;
|
|
14
|
-
object-fit: cover;
|
|
15
|
-
height: 200px;
|
|
16
|
-
width: 200px;
|
|
17
|
-
margin-bottom: 10px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.overlay {
|
|
21
|
-
position: fixed;
|
|
22
|
-
top: 0;
|
|
23
|
-
bottom: 0;
|
|
24
|
-
left: 0;
|
|
25
|
-
right: 0;
|
|
26
|
-
background: rgba(0, 0, 0, 0.7);
|
|
27
|
-
transition: opacity 500ms;
|
|
28
|
-
visibility: hidden;
|
|
29
|
-
opacity: 0;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.overlay:target {
|
|
33
|
-
visibility: visible;
|
|
34
|
-
opacity: 1;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.popup {
|
|
38
|
-
margin: 70px auto;
|
|
39
|
-
padding: 20px;
|
|
40
|
-
background: #fff;
|
|
41
|
-
border-radius: 5px;
|
|
42
|
-
width: 30%;
|
|
43
|
-
position: relative;
|
|
44
|
-
transition: all 1s ease-in-out;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.popup .close {
|
|
48
|
-
position: absolute;
|
|
49
|
-
top: 10px;
|
|
50
|
-
right: 10px;
|
|
51
|
-
transition: all 200ms;
|
|
52
|
-
font-size: 30px;
|
|
53
|
-
font-weight: bold;
|
|
54
|
-
text-decoration: none;
|
|
55
|
-
color: #333;
|
|
56
|
-
}
|
|
57
|
-
.popup .close:hover {
|
|
58
|
-
color: #06D85F;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.popup .content {
|
|
62
|
-
padding-right: 20px;
|
|
63
|
-
max-height: 30%;
|
|
64
|
-
overflow: auto;
|
|
65
|
-
font: 15px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
@media screen and (max-width: 700px){
|
|
69
|
-
.box{
|
|
70
|
-
width: 70%;
|
|
71
|
-
}
|
|
72
|
-
.popup{
|
|
73
|
-
width: 70%;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
1
|
+
---
|
|
2
|
+
---
|
|
3
|
+
|
|
4
|
+
@import "jekyll-theme-penumbra";
|
|
5
|
+
|
|
6
|
+
.sidebar {
|
|
7
|
+
width:200px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.img-circle {
|
|
11
|
+
-webkit-border-radius: 50%;
|
|
12
|
+
-moz-border-radius: 50%;
|
|
13
|
+
border-radius: 50%;
|
|
14
|
+
object-fit: cover;
|
|
15
|
+
height: 200px;
|
|
16
|
+
width: 200px;
|
|
17
|
+
margin-bottom: 10px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.overlay {
|
|
21
|
+
position: fixed;
|
|
22
|
+
top: 0;
|
|
23
|
+
bottom: 0;
|
|
24
|
+
left: 0;
|
|
25
|
+
right: 0;
|
|
26
|
+
background: rgba(0, 0, 0, 0.7);
|
|
27
|
+
transition: opacity 500ms;
|
|
28
|
+
visibility: hidden;
|
|
29
|
+
opacity: 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.overlay:target {
|
|
33
|
+
visibility: visible;
|
|
34
|
+
opacity: 1;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.popup {
|
|
38
|
+
margin: 70px auto;
|
|
39
|
+
padding: 20px;
|
|
40
|
+
background: #fff;
|
|
41
|
+
border-radius: 5px;
|
|
42
|
+
width: 30%;
|
|
43
|
+
position: relative;
|
|
44
|
+
transition: all 1s ease-in-out;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.popup .close {
|
|
48
|
+
position: absolute;
|
|
49
|
+
top: 10px;
|
|
50
|
+
right: 10px;
|
|
51
|
+
transition: all 200ms;
|
|
52
|
+
font-size: 30px;
|
|
53
|
+
font-weight: bold;
|
|
54
|
+
text-decoration: none;
|
|
55
|
+
color: #333;
|
|
56
|
+
}
|
|
57
|
+
.popup .close:hover {
|
|
58
|
+
color: #06D85F;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.popup .content {
|
|
62
|
+
padding-right: 20px;
|
|
63
|
+
max-height: 30%;
|
|
64
|
+
overflow: auto;
|
|
65
|
+
font: 15px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@media screen and (max-width: 700px){
|
|
69
|
+
.box{
|
|
70
|
+
width: 70%;
|
|
71
|
+
}
|
|
72
|
+
.popup{
|
|
73
|
+
width: 70%;
|
|
74
|
+
}
|
|
75
|
+
}
|