Skip to content

Commit 3a13ea4

Browse files
committed
Add a new coloured theme
1 parent 2112bbf commit 3a13ea4

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

_includes/footer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ <h2>Categories</h2>
6161
<p>{{ site.last_update }}{{ site.time }}</p>
6262
<p>
6363
<a href="http://info.flagcounter.com/bG4O" target="_blank" rel="noopener">
64-
<img src="http://s09.flagcounter.com/countxl/bG4O/bg_FFFFFF/txt_000000/border_CCCCCC/columns_3/maxflags_100/viewers_0/labels_0/pageviews_1/flags_0/percent_0/"
64+
<img src="http://s09.flagcounter.com/countxl/bG4O/bg_fffa00/txt_000000/border_000000/columns_3/maxflags_100/viewers_0/labels_0/pageviews_1/flags_0/percent_0/"
6565
alt="Flag Counter">
6666
</a>
6767
</p>

_layouts/default.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
is3D: true,
3131
'width': 400,
3232
'height': 330,
33-
'titleTextStyle': { 'color': 'black' } };
33+
'titleTextStyle': { 'color': 'black', bold: true },
34+
'backgroundColor': '#fffa00' };
3435
// Instantiate and draw our chart, passing in some options.
3536
var chart = new google.visualization.PieChart(document.getElementById('chart_div_developer_name'));
3637
chart.draw(data, options);
@@ -46,7 +47,8 @@
4647
is3D: true,
4748
'width': 400,
4849
'height': 330,
49-
'titleTextStyle': { 'color': 'black' } };
50+
'titleTextStyle': { 'color': 'black', bold: true },
51+
'backgroundColor': '#fffa00'};
5052
// Instantiate and draw our chart, passing in some options.
5153
var chart = new google.visualization.PieChart(document.getElementById('chart_div_all'));
5254
chart.draw(data, options);

_sass/_layout.scss

+9-8
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
*/
44
.site-header {
55
border-top: 5px solid $grey-color-dark;
6-
border-bottom: 1px solid $grey-color-light;
6+
border-bottom: 5px solid $grey-color-dark;
77
min-height: 56px;
8-
background-color: $peach;
8+
background-color: #FF00FF;
99
// Positioning context for the mobile navigation icon
1010
position: relative;
1111
font-weight: bold;
12+
padding-bottom: 7px;
1213
}
1314

1415
.site-title {
@@ -48,9 +49,9 @@
4849
position: absolute;
4950
top: 9px;
5051
right: $spacing-unit / 2;
51-
background-color: $background-color;
52-
border: 1px solid $grey-color-light;
53-
border-radius: 5px;
52+
background-color: #66ff00;
53+
border: 5px solid $grey-color-dark;
54+
border-radius: 20px;
5455
text-align: right;
5556

5657
.menu-icon {
@@ -100,8 +101,9 @@
100101
* Site footer
101102
*/
102103
.site-footer {
103-
border-top: 1px solid $grey-color-light;
104+
border-top: 5px solid $grey-color-dark;
104105
padding: $spacing-unit 0;
106+
background-color: $background-color;
105107
}
106108

107109
.footer-heading {
@@ -124,8 +126,6 @@
124126

125127
}
126128

127-
body { background-color: white;}
128-
129129
.footer-col {
130130
float: left;
131131
margin-bottom: $spacing-unit / 2;
@@ -181,6 +181,7 @@ pre, .footer-col p {
181181
*/
182182
.page-content {
183183
padding: $spacing-unit 0;
184+
background-color: white;
184185

185186
}
186187

css/main.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $base-line-height: 1.5;
1515
$spacing-unit: 30px;
1616

1717
$text-color: #111;
18-
$background-color: #fdfdfd;
18+
$background-color: #fffa00;
1919
$brand-color: #2a7ae2;
2020

2121
$grey-color: #828282;

0 commit comments

Comments
 (0)