paloma-jekyll 0.1.3 → 0.2.3
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/_sass/_theme.scss +19 -8
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b52b4384c8ea3cec35a22e889a732917e06e26317b3966c8133e69064bda269
|
4
|
+
data.tar.gz: ffa6e904341a519629019c8bb293ce137c964ce7cae04088bdd9d07f70a19ac7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9924a435518bacfb76c3754918a6ac5e553306bf3334d7882a26527c8c56a06396a53fb53944bcf614e5ad366eaef1b61a5706027848e71cb77c8316e2b3535
|
7
|
+
data.tar.gz: 2259944f49ba4bc65259ffb18bf040fa9f621aafdc70a9152454dbfd1e5851f2f5dc07f1a8485505f3116ec9e239a91243fb7b6332c01e4d3b868141aee40de6
|
data/_sass/_theme.scss
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
body {
|
2
|
-
color: #
|
3
|
-
background: #
|
2
|
+
color: #4A5859;
|
3
|
+
background: #FFF2EE;
|
4
4
|
height: 100%;
|
5
5
|
padding: 0px;
|
6
6
|
margin: 0px;
|
@@ -8,13 +8,22 @@ body {
|
|
8
8
|
font-size: 20px;
|
9
9
|
}
|
10
10
|
|
11
|
+
h1 {
|
12
|
+
color: #C83E4D;
|
13
|
+
font-size: 3.5em;
|
14
|
+
margin: 100px 0px 100px 0px;
|
15
|
+
}
|
16
|
+
|
17
|
+
h2 {
|
18
|
+
padding: 30px 0px 15px 0px;
|
19
|
+
}
|
20
|
+
|
11
21
|
.container {
|
12
22
|
max-width: 600px;
|
13
23
|
margin: 0px auto;
|
14
24
|
}
|
15
25
|
|
16
26
|
.wrap {
|
17
|
-
top: 100px;
|
18
27
|
position: relative;
|
19
28
|
}
|
20
29
|
|
@@ -28,11 +37,11 @@ pre {
|
|
28
37
|
z-index: 900;
|
29
38
|
width: 100%;
|
30
39
|
top: 0px;
|
40
|
+
background: #FFF;
|
31
41
|
}
|
32
42
|
|
33
43
|
.article, .main {
|
34
|
-
padding: 15px 15px
|
35
|
-
border-radius: 8px;
|
44
|
+
padding: 15px 15px 115px 15px;
|
36
45
|
}
|
37
46
|
|
38
47
|
.nav { }
|
@@ -51,10 +60,12 @@ pre {
|
|
51
60
|
display: inline-block;
|
52
61
|
padding: 10px 10px 10px 10px;
|
53
62
|
margin: 0px 10px 0px 0px;
|
54
|
-
background: #
|
55
|
-
color: #
|
63
|
+
background: #C83E4D;
|
64
|
+
color: #FFF2EE;
|
65
|
+
border-radius: 4px;
|
66
|
+
box-shadow: 0px 2px 0px 0px #AA4D57;
|
56
67
|
}
|
57
68
|
|
58
69
|
.item a { text-decoration: none; color: inherit;}
|
59
70
|
.item--nav {}
|
60
|
-
.item--current {
|
71
|
+
.item--current { }
|