jekyll-lenciel-theme 0.1.8 → 0.2.0
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/_includes/head.html +4 -4
- data/assets/stylesheets/data-table.css +31 -0
- data/assets/stylesheets/screen.css +1 -0
- metadata +7 -66
- data/_sass/_base.scss +0 -5
- data/_sass/_partials.scss +0 -8
- data/_sass/base/_layout.scss +0 -192
- data/_sass/base/_solarized.scss +0 -46
- data/_sass/base/_theme.scss +0 -86
- data/_sass/base/_typography.scss +0 -162
- data/_sass/base/_utilities.scss +0 -28
- data/_sass/custom/_article.scss +0 -88
- data/_sass/custom/_background.scss +0 -3
- data/_sass/custom/_colors.scss +0 -48
- data/_sass/custom/_fonts.scss +0 -16
- data/_sass/custom/_footer.scss +0 -68
- data/_sass/custom/_footnotes.scss +0 -4
- data/_sass/custom/_header.scss +0 -11
- data/_sass/custom/_icomoon.scss +0 -204
- data/_sass/custom/_layout.scss +0 -21
- data/_sass/custom/_navigation.scss +0 -50
- data/_sass/custom/_styles.scss +0 -81
- data/_sass/custom/_tablestyle.scss +0 -37
- data/_sass/partials/_archive.scss +0 -72
- data/_sass/partials/_blog.scss +0 -157
- data/_sass/partials/_footer.scss +0 -19
- data/_sass/partials/_header.scss +0 -18
- data/_sass/partials/_navigation.scss +0 -137
- data/_sass/partials/_sharing.scss +0 -8
- data/_sass/partials/_sidebar.scss +0 -5
- data/_sass/partials/_syntax.scss +0 -278
- data/_sass/partials/sidebar/_base.scss +0 -106
- data/_sass/partials/sidebar/_delicious.scss +0 -4
- data/_sass/partials/sidebar/_googleplus.scss +0 -26
- data/_sass/partials/sidebar/_pinboard.scss +0 -12
- data/_sass/partials/sidebar/_twitter.scss +0 -34
- data/assets/stylesheets/screen.scss +0 -15
data/_sass/base/_typography.scss
DELETED
@@ -1,162 +0,0 @@
|
|
1
|
-
$blockquote: $type-border !default;
|
2
|
-
$sans: "PT Sans", "Helvetica Neue", Arial, sans-serif !default;
|
3
|
-
$serif: "PT Serif", Georgia, Times, "Times New Roman", serif !default;
|
4
|
-
$mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace !default;
|
5
|
-
$heading-font-family: "PT Serif", "Georgia", "Helvetica Neue", Arial, sans-serif !default;
|
6
|
-
$header-title-font-family: $heading-font-family !default;
|
7
|
-
$header-subtitle-font-family: $heading-font-family !default;
|
8
|
-
|
9
|
-
// Fonts
|
10
|
-
.heading {
|
11
|
-
font-family: $heading-font-family;
|
12
|
-
}
|
13
|
-
.sans { font-family: $sans; }
|
14
|
-
.serif { font-family: $serif; }
|
15
|
-
.mono { font-family: $mono; }
|
16
|
-
|
17
|
-
body > header h1 {
|
18
|
-
font-size: 2.2em;
|
19
|
-
@extend .heading;
|
20
|
-
font-family: $header-title-font-family;
|
21
|
-
font-weight: normal;
|
22
|
-
line-height: 1.2em;
|
23
|
-
margin-bottom: 0.6667em;
|
24
|
-
}
|
25
|
-
body > header h2 {
|
26
|
-
font-family: $header-subtitle-font-family;
|
27
|
-
}
|
28
|
-
|
29
|
-
body {
|
30
|
-
line-height: 1.5em;
|
31
|
-
color: $text-color;
|
32
|
-
@extend .serif;
|
33
|
-
}
|
34
|
-
h1 {
|
35
|
-
font-size: 2.2em;
|
36
|
-
line-height: 1.2em;
|
37
|
-
}
|
38
|
-
|
39
|
-
@media only screen and (min-width: 992px) {
|
40
|
-
body { font-size: 1.15em; }
|
41
|
-
h1 { font-size: 2.6em; line-height: 1.2em; }
|
42
|
-
}
|
43
|
-
|
44
|
-
#{headings()}{
|
45
|
-
@extend .heading;
|
46
|
-
text-rendering: optimizelegibility;
|
47
|
-
text-shadow: 1px 1px #efefef,2px 2px #828887;
|
48
|
-
margin-bottom: 1em;
|
49
|
-
font-weight: bold;
|
50
|
-
}
|
51
|
-
h2, section h1 {
|
52
|
-
font-size: 1.5em;
|
53
|
-
}
|
54
|
-
h3, section h2, section section h1 {
|
55
|
-
font-size: 1.3em;
|
56
|
-
}
|
57
|
-
h4, section h3, section section h2, section section section h1 {
|
58
|
-
font-size: 1em;
|
59
|
-
}
|
60
|
-
h5, section h4, section section h3 {
|
61
|
-
font-size: .9em;
|
62
|
-
}
|
63
|
-
h6, section h5, section section h4, section section section h3 {
|
64
|
-
font-size: .8em;
|
65
|
-
}
|
66
|
-
p, blockquote, ul, ol { margin-bottom: 1.5em; }
|
67
|
-
|
68
|
-
ul { list-style-type: disc;
|
69
|
-
ul { list-style-type: circle; margin-bottom: 0px;
|
70
|
-
ul { list-style-type: square; margin-bottom: 0px; }}}
|
71
|
-
|
72
|
-
ol { list-style-type: decimal;
|
73
|
-
ol { list-style-type: lower-alpha; margin-bottom: 0px;
|
74
|
-
ol { list-style-type: lower-roman; margin-bottom: 0px; }}}
|
75
|
-
|
76
|
-
ul, ol { &, ul, ol { margin-left: 1.3em; }}
|
77
|
-
|
78
|
-
strong { font-weight: bold; }
|
79
|
-
|
80
|
-
em { font-style: italic; }
|
81
|
-
|
82
|
-
sup, sub { font-size: 0.8em; position: relative; display: inline-block; }
|
83
|
-
sup { top: -.5em; }
|
84
|
-
sub { bottom: -.5em; }
|
85
|
-
|
86
|
-
q { font-style: italic;
|
87
|
-
&:before { content: "\201C"; }
|
88
|
-
&:after { content: "\201D"; }
|
89
|
-
}
|
90
|
-
|
91
|
-
em, dfn { font-style: italic; }
|
92
|
-
|
93
|
-
strong, dfn { font-weight: bold; }
|
94
|
-
|
95
|
-
del, s { text-decoration: line-through; }
|
96
|
-
|
97
|
-
abbr, acronym { border-bottom: 1px dotted; cursor: help; }
|
98
|
-
|
99
|
-
pre, code, tt { @extend .mono; }
|
100
|
-
|
101
|
-
sub, sup { line-height: 0; }
|
102
|
-
|
103
|
-
hr { margin-bottom: 0.2em; }
|
104
|
-
|
105
|
-
small { font-size: .8em; }
|
106
|
-
|
107
|
-
big { font-size: 1.2em; }
|
108
|
-
|
109
|
-
blockquote {
|
110
|
-
$bq-margin: 1.2em;
|
111
|
-
font-style: italic;
|
112
|
-
position: relative;
|
113
|
-
font-size: 1.2em;
|
114
|
-
line-height: 1.5em;
|
115
|
-
padding-left: 1em;
|
116
|
-
border-left: 4px solid rgba($text-color-light, .5);
|
117
|
-
cite {
|
118
|
-
font-style: italic;
|
119
|
-
a { color: $text-color-light !important; word-wrap: break-word; }
|
120
|
-
&:before { content: '\2014'; padding:{right: .3em; left: .3em;} color: $text-color-light; }
|
121
|
-
}
|
122
|
-
@media only screen and (min-width: 992px) {
|
123
|
-
padding-left: 1.5em;
|
124
|
-
border-left-width: 4px;
|
125
|
-
}
|
126
|
-
}
|
127
|
-
|
128
|
-
.pullquote-right:before,
|
129
|
-
.pullquote-left:before {
|
130
|
-
/* Reset metrics. */
|
131
|
-
padding: 0;
|
132
|
-
border: none;
|
133
|
-
|
134
|
-
/* Content */
|
135
|
-
content: attr(data-pullquote);
|
136
|
-
|
137
|
-
/* Pull out to the right, modular scale based margins. */
|
138
|
-
float: right;
|
139
|
-
width: 45%;
|
140
|
-
margin: .5em 0 1em 1.5em;
|
141
|
-
|
142
|
-
/* Baseline correction */
|
143
|
-
position: relative;
|
144
|
-
top: 7px;
|
145
|
-
font-size: 1.4em;
|
146
|
-
line-height: 1.45em;
|
147
|
-
}
|
148
|
-
|
149
|
-
.pullquote-left:before {
|
150
|
-
/* Make left pullquotes align properly. */
|
151
|
-
float: left;
|
152
|
-
margin: .5em 1.5em 1em 0;
|
153
|
-
}
|
154
|
-
|
155
|
-
/* @extend this to force long lines of continuous text to wrap */
|
156
|
-
.force-wrap {
|
157
|
-
white-space: -moz-pre-wrap;
|
158
|
-
white-space: -pre-wrap;
|
159
|
-
white-space: -o-pre-wrap;
|
160
|
-
white-space: pre-wrap;
|
161
|
-
word-wrap: break-word;
|
162
|
-
}
|
data/_sass/base/_utilities.scss
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
@mixin mask-image($img, $repeat: no-repeat){
|
2
|
-
@include experimental(mask-image, image-url($img), -webkit, -moz, -o, -ms);
|
3
|
-
@include experimental(mask-repeat, $repeat, -webkit, -moz, -o, -ms);
|
4
|
-
width: image-width($img);
|
5
|
-
height: image-height($img);
|
6
|
-
}
|
7
|
-
|
8
|
-
@mixin shadow-box($border: #fff .5em solid, $shadow: rgba(#000, .15) 0 1px 4px, $border-radius: .3em) {
|
9
|
-
@include border-radius($border-radius);
|
10
|
-
@include box-shadow($shadow);
|
11
|
-
@include box-sizing(border-box);
|
12
|
-
border: $border;
|
13
|
-
}
|
14
|
-
|
15
|
-
@mixin selection($bg, $color: inherit, $text-shadow: none){
|
16
|
-
* {
|
17
|
-
&::-moz-selection { background: $bg; color: $color; text-shadow: $text-shadow; }
|
18
|
-
&::-webkit-selection { background: $bg; color: $color; text-shadow: $text-shadow; }
|
19
|
-
&::selection { background: $bg; color: $color; text-shadow: $text-shadow; }
|
20
|
-
}
|
21
|
-
}
|
22
|
-
|
23
|
-
@function text-color($color, $dark: dark, $light: light){
|
24
|
-
$text-color: ( (red($color)*299) + (green($color)*587) + (blue($color)*114) ) / 1000;
|
25
|
-
$text-color: if($text-color >= 150, $dark, $light);
|
26
|
-
@return $text-color;
|
27
|
-
}
|
28
|
-
|
data/_sass/custom/_article.scss
DELETED
@@ -1,88 +0,0 @@
|
|
1
|
-
// Article
|
2
|
-
body > div#main {
|
3
|
-
@include single-box-shadow(#000, 1px, 3px, 5px);
|
4
|
-
}
|
5
|
-
|
6
|
-
article {
|
7
|
-
line-height: 1.618em;
|
8
|
-
overflow: hidden;
|
9
|
-
div.entry-content {
|
10
|
-
@include word-break(break-all);
|
11
|
-
text-rendering: optimizeLegibility;
|
12
|
-
}
|
13
|
-
h2, h3, h4, h5, h6 {
|
14
|
-
font-family: $serif;
|
15
|
-
line-height: 1em;
|
16
|
-
text-shadow: 1px 1px #efefef,2px 2px #828887;
|
17
|
-
}
|
18
|
-
h2 {
|
19
|
-
margin-bottom: .8em;
|
20
|
-
}
|
21
|
-
i {
|
22
|
-
&.icon-twitter {
|
23
|
-
color: hsl(209.01, 86.94%, 48.04%);
|
24
|
-
}
|
25
|
-
|
26
|
-
&.icon-facebook {
|
27
|
-
color: hsl(220.88, 36.84%, 48.43%);
|
28
|
-
}
|
29
|
-
|
30
|
-
&.icon-google-plus {
|
31
|
-
color: hsl(12.99, 66.24%, 46.47%);
|
32
|
-
}
|
33
|
-
|
34
|
-
&.icon-github {
|
35
|
-
color: hsl(0.00, 0.00%, 25.00%);
|
36
|
-
}
|
37
|
-
}
|
38
|
-
|
39
|
-
section#details { // insert `<section id="details"></section>` into HTML or Markdown file.
|
40
|
-
height: 54px;
|
41
|
-
width: 1200px;
|
42
|
-
background: url('../images/construction.png') repeat-x 50% 0;
|
43
|
-
background-size: 116px 54px;
|
44
|
-
margin-left: -100px;
|
45
|
-
margin-bottom: .5em;
|
46
|
-
}
|
47
|
-
|
48
|
-
blockquote {
|
49
|
-
font-style: normal;
|
50
|
-
font-size: 1em;
|
51
|
-
line-height: 1.618em;
|
52
|
-
color: hsl(0, 0%, 40%);
|
53
|
-
padding: 15px;
|
54
|
-
border-left: 0px;
|
55
|
-
background-color: hsl(0, 0, 95%);
|
56
|
-
@include box-shadow(hsl(0, 0%, 76%) 0 1px 5px inset);
|
57
|
-
@include border-radius(3px);
|
58
|
-
p:last-child {
|
59
|
-
margin: 0;
|
60
|
-
}
|
61
|
-
footer > strong {
|
62
|
-
font-style: italic;
|
63
|
-
}
|
64
|
-
}
|
65
|
-
div.footnotes {
|
66
|
-
color: hsl(0, 0%, 53%);
|
67
|
-
padding-top: 1.5em;
|
68
|
-
background: url('../images/divider.png') top center no-repeat;
|
69
|
-
}
|
70
|
-
kbd {
|
71
|
-
padding: 0.1em 0.6em;
|
72
|
-
border: 1px solid hsl(0, 0%, 80%);
|
73
|
-
font-size: 11px;
|
74
|
-
font-family: Arial,Helvetica,sans-serif;
|
75
|
-
background-color: hsl(0, 0%, 97%);
|
76
|
-
color: hsl(0, 0%, 20%);
|
77
|
-
-moz-box-shadow: 0 1px 0px rgba(0,0,0,0.2),0 0 0 2px #fff inset;
|
78
|
-
-webkit-box-shadow: 0 1px 0px hsla(0, 0%, 0%, 0.2),0 0 0 2px white inset;
|
79
|
-
box-shadow: 0 1px 0px hsla(0, 0%, 0%, 0.2),0 0 0 2px white inset;
|
80
|
-
-moz-border-radius: 3px;
|
81
|
-
-webkit-border-radius: 3px;
|
82
|
-
border-radius: 3px;
|
83
|
-
display: inline-block;
|
84
|
-
margin: 0 0.1em;
|
85
|
-
text-shadow: 0 1px 0 white;
|
86
|
-
line-height: 1.4;
|
87
|
-
}
|
88
|
-
}
|
@@ -1,3 +0,0 @@
|
|
1
|
-
html {
|
2
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAWCAYAAAC2ew6NAAAEZUlEQVR42oWX12ogMQxFhzTSe4f03ntPSCP1JY2E/P+PaDmCA2Z2s3kQnrElX+lalmaqlpaWQGZnZ2NpaSnW19djdXXVMWVzczP6+vpiZGQkSn2E597e3lhbW4udnZ0ct7e3Y2NjI/fo6OiIpqammJmZCfW1X1xcRA+MtNna2krZ29v7C68CBOFlbm6OzTFiBDjHlZWVmJ6eTsCenh71dTLXDWx3dzftlpeXERxKZ9Uv8RYWFgwI3ZKkDKzEq2RmeHg4Dg8PMdRRmGSDdGR/fz8GBgZicnKyZCb1Tk5OGBEYSV3ZPTo6StDm5ubUr+MhpaNiYzc4OCheMppHcHl5ySIARKXDCHPJ1OnpabKADceCzvn5eZydnck8wTEPMI6yzt7smc6Jpx362IqJjY6CNz8/n6xWn5+f8fDwwIK5wqIRMrIZzmbu3N/fx8fHR7y8vMTT0xNzbA6T6BtYinMHBwdxd3cXX19f8fr6Ch5Mso4++yMEmnY6fHx8HDc3N/H9/R0VE0bEkTGW4DIFo7zDBjrlMakHmBcS/TLPsfOiGQTinJfJk2QekiSqYlLaZdJ3jQHnWSM2Yd0biw4jLOGEzpS3H+FZFrVlP94hg5EAJY93SNNRI85xamoqk7i1tTVlaGiIhM6NdKhkUkcmJiaw85KRj+Qz+jqpLuASAh6XNLHa29ujv7/f6iNBKVV5W3Gos7MzGhoaMObCZIno6upiU4+REce9NNxqEj5tGxsbsUnbsbExwGRRlnSeNUpXHY991IHNfK7MBYBHR0dhA2PLSTrQ3d0d4+PjBoTAFnY8AwAYIOhigy17wLTOcawEZ05j9yMevhgYAVVl4re1tVkr6x0IVr10lhSFNZgETP16B8LG/Db3f8VDR2YrjO0kLMJKrYMgRF8vPToOI4hMlvbM/av0MP6Kh09UIi8TjDLBcWpYZ8aS5THaNpkjR9mYsc4MlcQqwqiYoz/iUXvNa2w5eqNkkdwgR0pmOBoCwVDBxnwjUI6Qo5cZWbEt6yxi6vwXj7bs6aWjHqFl4+LiAkc4MiSBbm9vMbQpyIiAOXd1dcWJeMnIS1ogHQ8d6yq6BsiaeDiLkzgPXq6ZLnn0gNou7bHPz89Ba0UeHx9xEtasoSkGiK1BXl9fx/v7e7y9vdHfZQU7bcsgCQbHbMvg8ZxzBidG5bHrqB0IKT4wZMEW+U+HfS4dK2+7TcMuJK52YsO67VVnq9IJj1LnTHiD8AbCLgwK4Gg71U4QA2Rf9RxtmTLoXVDX9lrRBWh33Fgd0kkDMD3QoU1aoPkKJycB+OGbwXcuG5eFkkRbpk3++s2AHb6BV1EeEDYCVGetmTqJEQlPB6K4WzuZ45b6C4GtHQgmcAgycJICX8fDDhxZLUseQYnnPxNgMiGbjH7a0UIBBAQ22QjhmRJjXnpRzHHWAKNUJUaJh6Pq+qFNsJBUx/OfyWMpCzOGbISzfNkQmWWkrHscZXmjS4H1ZNJeXsfzyw1Hy89DbEq8P07aJTElh3R1AAAAAElFTkSuQmCC);
|
3
|
-
}
|
data/_sass/custom/_colors.scss
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
// Here you can easily change your sites's color scheme.
|
2
|
-
// To give it a try, uncomment some of the lines below rebuild your blog, and see how it works.
|
3
|
-
// If you need a handy color picker try http://hslpicker.com
|
4
|
-
|
5
|
-
// uncomment line with * to get dark back
|
6
|
-
/*$header-bg: #263347;*/
|
7
|
-
/*$subtitle-color: lighten($header-bg, 58);*/
|
8
|
-
//$nav-bg: desaturate(lighten(#8fc17a, 18), 5);
|
9
|
-
$nav-bg: desaturate(lighten(#4F5153, 1), 5);
|
10
|
-
//$nav-bg-front: image-url('noise.png');
|
11
|
-
$nav-bg-back: linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11));
|
12
|
-
//$sidebar-bg: desaturate(#eceff5, 8);
|
13
|
-
//$sidebar-link-color: saturate(#526f9a, 10);
|
14
|
-
//$sidebar-link-color-hover: darken(#7ab662, 9);
|
15
|
-
$footer-bg: #393A3D !default;
|
16
|
-
//$footer-bg-front: image-url('noise.png');
|
17
|
-
$footer-bg-back: linear-gradient(lighten($footer-bg, 9), $footer-bg, darken($footer-bg, 11));
|
18
|
-
// $footer-link-color: hsl(209.73, 47.64%, 54.31%);
|
19
|
-
$footer-link-color: hsl(209.01, 86.94%, 50.04%);
|
20
|
-
$footer-link-color-hover: lighten($footer-link-color, 9);
|
21
|
-
|
22
|
-
|
23
|
-
/* To use the light Solarized highlighting theme uncomment the following line */
|
24
|
-
//$solarized: light;
|
25
|
-
|
26
|
-
/* If you want to tweak the Solarized colors you can do that here */
|
27
|
-
//$base03: #002b36; //darkest blue
|
28
|
-
//$base02: #073642; //dark blue
|
29
|
-
//$base01: #586e75; //darkest gray
|
30
|
-
//$base00: #657b83; //dark gray
|
31
|
-
//$base0: #839496; //medium gray
|
32
|
-
//$base1: #93a1a1; //medium light gray
|
33
|
-
//$base2: #eee8d5; //cream
|
34
|
-
//$base3: #fdf6e3; //white
|
35
|
-
//$solar-yellow: #b58900;
|
36
|
-
//$solar-orange: #cb4b16;
|
37
|
-
//$solar-red: #dc322f;
|
38
|
-
//$solar-magenta: #d33682;
|
39
|
-
//$solar-violet: #6c71c4;
|
40
|
-
//$solar-blue: #268bd2;
|
41
|
-
//$solar-cyan: #2aa198;
|
42
|
-
//$solar-green: #859900;
|
43
|
-
|
44
|
-
|
45
|
-
/* Non highlighted code colors */
|
46
|
-
//$pre-bg: $base03;
|
47
|
-
//$pre-border: darken($base02, 5);
|
48
|
-
//$pre-color: $base1;
|
data/_sass/custom/_fonts.scss
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
// Here you can easily change font faces which are used in your site.
|
2
|
-
// To give it a try, uncomment some of the lines below rebuild your blog, and see how it works. your sites's.
|
3
|
-
// If you love to use Web Fonts, you also need to add some lines to source/_includes/custom/head.html
|
4
|
-
|
5
|
-
//$sans: "Optima", sans-serif;
|
6
|
-
//$serif: "Baskerville", serif;
|
7
|
-
//$mono: "Courier", monospace;
|
8
|
-
//$heading-font-family: "Verdana", sans-serif;
|
9
|
-
//$header-title-font-family: "Futura", sans-serif;
|
10
|
-
//$header-subtitle-font-family: "Futura", sans-serif;
|
11
|
-
|
12
|
-
$header-title-font-family: 'Patua One', "Helvetica Neue", Arial, sans-serif;
|
13
|
-
$header-subtitle-font-family: 'Yanone Kaffeesatz', "Helvetica Neue", Arial, sans-serif;
|
14
|
-
$heading-font-family: 'Yanone Kaffeesatz', "Helvetica Neue", Arial, sans-serif;
|
15
|
-
// $serif: 'Hiragino Mincho ProN', PCMyungjo, serif;
|
16
|
-
$serif: 'PT Sans', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
|
data/_sass/custom/_footer.scss
DELETED
@@ -1,68 +0,0 @@
|
|
1
|
-
$footer-construction: hsl(0.00, 0.00%, 6.27%);
|
2
|
-
|
3
|
-
// Footer
|
4
|
-
body > footer {
|
5
|
-
overflow: hidden;
|
6
|
-
p {
|
7
|
-
margin-bottom: 0;
|
8
|
-
}
|
9
|
-
@include border-bottom-radius(0px);
|
10
|
-
p span.theme-version {
|
11
|
-
float: right;
|
12
|
-
color: #9C9EA2;
|
13
|
-
}
|
14
|
-
@include single-box-shadow(#000, 1px, 3px, 5px)
|
15
|
-
}
|
16
|
-
|
17
|
-
section {
|
18
|
-
&.contruction-wrap {
|
19
|
-
height: 52px;
|
20
|
-
width:200px;
|
21
|
-
position: absolute;
|
22
|
-
right: 0;
|
23
|
-
top: 14px;
|
24
|
-
}
|
25
|
-
div.contruction {
|
26
|
-
height: 15px;
|
27
|
-
width: 200px;
|
28
|
-
position: relative;
|
29
|
-
margin-left: 105px;
|
30
|
-
background-color: hsl(39.59, 100.00%, 47.84%);
|
31
|
-
@include rotate(-45deg);
|
32
|
-
@include background-image(linear-gradient(
|
33
|
-
45deg,
|
34
|
-
$footer-construction 6.25%,
|
35
|
-
transparent 6.25%,
|
36
|
-
transparent 12.5%,
|
37
|
-
$footer-construction 12.5%,
|
38
|
-
$footer-construction 18.75%,
|
39
|
-
transparent 18.75%,
|
40
|
-
transparent 25%,
|
41
|
-
$footer-construction 25%,
|
42
|
-
$footer-construction 31.25%,
|
43
|
-
transparent 31.25%,
|
44
|
-
transparent 37.5%,
|
45
|
-
$footer-construction 37.5%,
|
46
|
-
$footer-construction 43.75%,
|
47
|
-
transparent 43.75%,
|
48
|
-
transparent 50%,
|
49
|
-
$footer-construction 50%,
|
50
|
-
$footer-construction 56.25%,
|
51
|
-
transparent 56.25%,
|
52
|
-
transparent 62.5%,
|
53
|
-
$footer-construction 62.5%,
|
54
|
-
$footer-construction 68.75%,
|
55
|
-
transparent 68.75%,
|
56
|
-
transparent 75%,
|
57
|
-
$footer-construction 75%,
|
58
|
-
$footer-construction 81.25%,
|
59
|
-
transparent 81.25%,
|
60
|
-
transparent 87.5%,
|
61
|
-
$footer-construction 87.5%,
|
62
|
-
$footer-construction 93.75%,
|
63
|
-
transparent 93.75%,
|
64
|
-
transparent 100%
|
65
|
-
));
|
66
|
-
@include box-shadow(hsla(0, 0%, 100%, 0.2) 0px 1px 2px 1px inset, hsla(0, 0%, 0%, 0.2) 0px -1px 1px 1px inset);
|
67
|
-
}
|
68
|
-
}
|
data/_sass/custom/_header.scss
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
// Header
|
2
|
-
body > header {
|
3
|
-
background: none;
|
4
|
-
h1, h2 {
|
5
|
-
@include text-shadow(0px 1px 0px #999, 0px 2px 0px #888, 0px 3px 0px #777, 0px 4px 0px #666, 0px 5px 0px #555, 0px 6px 0px #444, 0px 7px 0px #333, 0px 8px 7px #001135);
|
6
|
-
}
|
7
|
-
h2 {
|
8
|
-
margin-top: .5em;
|
9
|
-
display: none;
|
10
|
-
}
|
11
|
-
}
|
data/_sass/custom/_icomoon.scss
DELETED
@@ -1,204 +0,0 @@
|
|
1
|
-
/* cyrillic-ext */
|
2
|
-
@font-face {
|
3
|
-
font-family: 'PT Sans';
|
4
|
-
font-style: normal;
|
5
|
-
font-weight: 400;
|
6
|
-
src: local('PT Sans'), local('PTSans-Regular'), url('../fonts/fhNmDCnjccoUYyU4ZASaLVKPGs1ZzpMvnHX-7fPOuAc.woff2') format('woff2');
|
7
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
8
|
-
}
|
9
|
-
/* cyrillic */
|
10
|
-
@font-face {
|
11
|
-
font-family: 'PT Sans';
|
12
|
-
font-style: normal;
|
13
|
-
font-weight: 400;
|
14
|
-
src: local('PT Sans'), local('PTSans-Regular'), url('../fonts/BJVWev7_auVaQ__OU8Qih1KPGs1ZzpMvnHX-7fPOuAc.woff2') format('woff2');
|
15
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
16
|
-
}
|
17
|
-
/* latin-ext */
|
18
|
-
@font-face {
|
19
|
-
font-family: 'PT Sans';
|
20
|
-
font-style: normal;
|
21
|
-
font-weight: 400;
|
22
|
-
src: local('PT Sans'), local('PTSans-Regular'), url('../fonts/oysROHFTu1eTZ74Hcf8V-VKPGs1ZzpMvnHX-7fPOuAc.woff2') format('woff2');
|
23
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
24
|
-
}
|
25
|
-
/* latin */
|
26
|
-
@font-face {
|
27
|
-
font-family: 'PT Sans';
|
28
|
-
font-style: normal;
|
29
|
-
font-weight: 400;
|
30
|
-
src: local('PT Sans'), local('PTSans-Regular'), url('../fonts/CWlc_g68BGYDSGdpJvpktgLUuEpTyoUstqEm5AMlJo4.woff2') format('woff2');
|
31
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
32
|
-
}
|
33
|
-
/* cyrillic-ext */
|
34
|
-
@font-face {
|
35
|
-
font-family: 'PT Sans';
|
36
|
-
font-style: normal;
|
37
|
-
font-weight: 700;
|
38
|
-
src: local('PT Sans Bold'), local('PTSans-Bold'), url('../fonts/kTYfCWJhlldPf5LnG4ZnHAsYbbCjybiHxArTLjt7FRU.woff2') format('woff2');
|
39
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
40
|
-
}
|
41
|
-
/* cyrillic */
|
42
|
-
@font-face {
|
43
|
-
font-family: 'PT Sans';
|
44
|
-
font-style: normal;
|
45
|
-
font-weight: 700;
|
46
|
-
src: local('PT Sans Bold'), local('PTSans-Bold'), url('../fonts/g46X4VH_KHOWAAa-HpnGPgsYbbCjybiHxArTLjt7FRU.woff2') format('woff2');
|
47
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
48
|
-
}
|
49
|
-
/* latin-ext */
|
50
|
-
@font-face {
|
51
|
-
font-family: 'PT Sans';
|
52
|
-
font-style: normal;
|
53
|
-
font-weight: 700;
|
54
|
-
src: local('PT Sans Bold'), local('PTSans-Bold'), url('../fonts/hpORcvLZtemlH8gI-1S-7gsYbbCjybiHxArTLjt7FRU.woff2') format('woff2');
|
55
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
56
|
-
}
|
57
|
-
/* latin */
|
58
|
-
@font-face {
|
59
|
-
font-family: 'PT Sans';
|
60
|
-
font-style: normal;
|
61
|
-
font-weight: 700;
|
62
|
-
src: local('PT Sans Bold'), local('PTSans-Bold'), url('../fonts/0XxGQsSc1g4rdRdjJKZrNAzyDMXhdD8sAj6OAJTFsBI.woff2') format('woff2');
|
63
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
64
|
-
}
|
65
|
-
/* cyrillic-ext */
|
66
|
-
@font-face {
|
67
|
-
font-family: 'PT Sans';
|
68
|
-
font-style: italic;
|
69
|
-
font-weight: 400;
|
70
|
-
src: local('PT Sans Italic'), local('PTSans-Italic'), url('../fonts/GpWpM_6S4VQLPNAQ3iWvVYX0hVgzZQUfRDuZrPvH3D8.woff2') format('woff2');
|
71
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
72
|
-
}
|
73
|
-
/* cyrillic */
|
74
|
-
@font-face {
|
75
|
-
font-family: 'PT Sans';
|
76
|
-
font-style: italic;
|
77
|
-
font-weight: 400;
|
78
|
-
src: local('PT Sans Italic'), local('PTSans-Italic'), url('../fonts/7dSh6BcuqDLzS2qAASIeuoX0hVgzZQUfRDuZrPvH3D8.woff2') format('woff2');
|
79
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
80
|
-
}
|
81
|
-
/* latin-ext */
|
82
|
-
@font-face {
|
83
|
-
font-family: 'PT Sans';
|
84
|
-
font-style: italic;
|
85
|
-
font-weight: 400;
|
86
|
-
src: local('PT Sans Italic'), local('PTSans-Italic'), url('../fonts/DVKQJxMmC9WF_oplMzlQqYX0hVgzZQUfRDuZrPvH3D8.woff2') format('woff2');
|
87
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
88
|
-
}
|
89
|
-
/* latin */
|
90
|
-
@font-face {
|
91
|
-
font-family: 'PT Sans';
|
92
|
-
font-style: italic;
|
93
|
-
font-weight: 400;
|
94
|
-
src: local('PT Sans Italic'), local('PTSans-Italic'), url('../fonts/PIPMHY90P7jtyjpXuZ2cLJBw1xU1rKptJj_0jans920.woff2') format('woff2');
|
95
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
96
|
-
}
|
97
|
-
/* cyrillic-ext */
|
98
|
-
@font-face {
|
99
|
-
font-family: 'PT Sans';
|
100
|
-
font-style: italic;
|
101
|
-
font-weight: 700;
|
102
|
-
src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url('../fonts/lILlYDvubYemzYzN7GbLkA7aC6SjiAOpAWOKfJDfVRY.woff2') format('woff2');
|
103
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
104
|
-
}
|
105
|
-
/* cyrillic */
|
106
|
-
@font-face {
|
107
|
-
font-family: 'PT Sans';
|
108
|
-
font-style: italic;
|
109
|
-
font-weight: 700;
|
110
|
-
src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url('../fonts/lILlYDvubYemzYzN7GbLkBdwxCXfZpKo5kWAx_74bHs.woff2') format('woff2');
|
111
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
112
|
-
}
|
113
|
-
/* latin-ext */
|
114
|
-
@font-face {
|
115
|
-
font-family: 'PT Sans';
|
116
|
-
font-style: italic;
|
117
|
-
font-weight: 700;
|
118
|
-
src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url('../fonts/lILlYDvubYemzYzN7GbLkIjoYw3YTyktCCer_ilOlhE.woff2') format('woff2');
|
119
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
120
|
-
}
|
121
|
-
/* latin */
|
122
|
-
@font-face {
|
123
|
-
font-family: 'PT Sans';
|
124
|
-
font-style: italic;
|
125
|
-
font-weight: 700;
|
126
|
-
src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url('../fonts/lILlYDvubYemzYzN7GbLkBampu5_7CjHW5spxoeN3Vs.woff2') format('woff2');
|
127
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
128
|
-
}
|
129
|
-
/* latin */
|
130
|
-
@font-face {
|
131
|
-
font-family: 'Patua One';
|
132
|
-
font-style: normal;
|
133
|
-
font-weight: 400;
|
134
|
-
src: local('Patua One'), local('PatuaOne-Regular'), url('../fonts/yAXhog6uK3bd3OwBILv_SJBw1xU1rKptJj_0jans920.woff2') format('woff2');
|
135
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
136
|
-
}
|
137
|
-
/* latin-ext */
|
138
|
-
@font-face {
|
139
|
-
font-family: 'Yanone Kaffeesatz';
|
140
|
-
font-style: normal;
|
141
|
-
font-weight: 400;
|
142
|
-
src: local('Yanone Kaffeesatz Regular'), local('YanoneKaffeesatz-Regular'), url('../fonts/YDAoLskQQ5MOAgvHUQCcLaa0P60JZGaCMFbL3N9v4H0.woff2') format('woff2');
|
143
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
144
|
-
}
|
145
|
-
/* latin */
|
146
|
-
@font-face {
|
147
|
-
font-family: 'Yanone Kaffeesatz';
|
148
|
-
font-style: normal;
|
149
|
-
font-weight: 400;
|
150
|
-
src: local('Yanone Kaffeesatz Regular'), local('YanoneKaffeesatz-Regular'), url('../fonts/YDAoLskQQ5MOAgvHUQCcLWjF_m7mVnhXExjNED3rUtY.woff2') format('woff2');
|
151
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
152
|
-
}
|
153
|
-
|
154
|
-
@font-face {
|
155
|
-
font-family: 'icomoon';
|
156
|
-
src: url('../fonts/IcoMoon.eot');
|
157
|
-
src: url('../fonts/IcoMoon.eot?#iefix') format('embedded-opentype'),
|
158
|
-
url('../fonts/IcoMoon.svg#icomoon') format('svg'),
|
159
|
-
url('../fonts/IcoMoon.woff') format('woff'),
|
160
|
-
url('../fonts/IcoMoon.ttf') format('truetype');
|
161
|
-
font-weight: normal;
|
162
|
-
font-style: normal;
|
163
|
-
}
|
164
|
-
|
165
|
-
/* Use the following CSS code if you want to use data attributes for inserting your icons */
|
166
|
-
[data-icon]:before {
|
167
|
-
font-family: 'icomoon';
|
168
|
-
content: attr(data-icon);
|
169
|
-
speak: none;
|
170
|
-
}
|
171
|
-
|
172
|
-
/* Use the following CSS code if you want to have a class per icon */
|
173
|
-
[class^="icon-"]:before, [class*=" icon-"]:before {
|
174
|
-
font-family: 'icomoon';
|
175
|
-
font-style: normal;
|
176
|
-
speak: none;
|
177
|
-
}
|
178
|
-
.icon-facebook:before {
|
179
|
-
content: "\23";
|
180
|
-
}
|
181
|
-
.icon-github:before {
|
182
|
-
content: "\24";
|
183
|
-
}
|
184
|
-
.icon-google-plus:before {
|
185
|
-
content: "\25";
|
186
|
-
}
|
187
|
-
.icon-rss:before {
|
188
|
-
content: "\26";
|
189
|
-
}
|
190
|
-
.icon-home:before {
|
191
|
-
content: "\27";
|
192
|
-
}
|
193
|
-
.icon-user:before {
|
194
|
-
content: "\28";
|
195
|
-
}
|
196
|
-
.icon-book-alt:before {
|
197
|
-
content: "\2a";
|
198
|
-
}
|
199
|
-
.icon-twitter:before {
|
200
|
-
content: "\22";
|
201
|
-
}
|
202
|
-
.icon-link:before {
|
203
|
-
content: "\21";
|
204
|
-
}
|