Skip to content

Commit 2d340e8

Browse files
authored
Add a theme with official logo and color scheme (#2)
1 parent 7aecdc1 commit 2d340e8

File tree

6 files changed

+128
-2
lines changed

6 files changed

+128
-2
lines changed

assets/theme_logo_description.pdf

129 KB
Binary file not shown.

layouts/_default/baseof.html

+3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@
3939
<link href="{{ "/css/kube.legenda.css" | relURL }}" rel="stylesheet" type="text/css">
4040
<link href="{{ "/css/highlight.css" | relURL }}" rel="stylesheet" type="text/css">
4141
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.2/styles/default.min.css">
42+
<link rel="preconnect" href="https://fonts.gstatic.com">
43+
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap" rel="stylesheet">
44+
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,700;1,400&display=swap" rel="stylesheet">
4245
<link href="{{ "/css/master.css" | relURL }}" rel="stylesheet" type="text/css">
4346
<link href="{{ "/css/kube.demo.css" | relURL }}" rel="stylesheet" type="text/css">
4447
<!-- Your own theme here -->

layouts/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ <h3>Conservative choices</h3>
3636
<p>API design is hard. Adding is easier than subtracting. So if we're not sure, we make conservative choices.</p>
3737
</div>
3838
</div>
39-
39+
4040
<div class="row gutters">
4141
<div class="col col-2 item"></div>
4242
<div class="col col-8 item">
43-
<h3>Sponsors</h3>
43+
<h2>Sponsors</h2>
4444
<p>The engineering, technical writing and organizational effort needed to bootstrap this Consortium and draft the first versions of the n-dimensional array and dataframe API standards is supported by:</p>
4545
<img src="/images/sponsors.png" alt="Sponsor logos">
4646
</div>

layouts/partials/header.html

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<div class="show-sm">
2+
<div id="nav-toggle-box">
3+
<div id="nav-toggle-brand">
4+
<a href="/">{{ .Site.Title }}</a>
5+
</div><a data-component="toggleme" data-target="#top" href="#" id="nav-toggle"><i class="kube-menu"></i></a>
6+
</div>
7+
</div>
8+
<div class="hide-sm" id="top">
9+
<div id="top-brand">
10+
<a href="/">
11+
<img src="{{ "/images/dark_blue_logo.png" | relURL }}">
12+
</a>
13+
</div>
14+
<nav id="top-nav-main">
15+
<ul>
16+
{{ $currentPage := . }}
17+
{{ range .Site.Menus.main }}
18+
<li><a href="{{ .URL }}" {{if $currentPage.IsMenuCurrent "main" . }} class="active"{{end}}>{{ .Name }}</a></li>
19+
{{end}}
20+
</ul>
21+
</nav>
22+
<nav id="top-nav-extra">
23+
<ul>
24+
{{ range .Site.Menus.extra }}
25+
<li>
26+
<a href="{{ .Permalink }}">{{ .Name }}</a>
27+
</li>
28+
{{ end }}
29+
</ul>
30+
</nav>
31+
</div>

static/css/custom.css

+92
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,95 @@ mark, code, samp, kbd {
99

1010
code {
1111
background: #f8f8f8; }
12+
13+
header {
14+
background-color: #0c1b29;
15+
}
16+
17+
header nav a {
18+
color: white !important;
19+
}
20+
21+
footer {
22+
background-color: #0c1b29;
23+
color: white !important;
24+
margin-bottom: 0 !important;
25+
}
26+
27+
footer li a{
28+
color: white !important;
29+
}
30+
31+
#hero h1 {
32+
font-family: 'Montserrat', sans-serif;
33+
color: #00bc87;
34+
}
35+
36+
.button {
37+
background-color: #00bc87;
38+
border-color: #00bc87;
39+
}
40+
41+
.button:hover {
42+
background-color: #0c1b29;
43+
border-color: #0c1b29;
44+
}
45+
46+
.button.outline {
47+
background: 0 0;
48+
border-width: 2px;
49+
border-color: #00bc87;
50+
color: #00bc87;
51+
}
52+
53+
.button.outline:hover {
54+
border-color: #0c1b29;
55+
color: #0c1b29;
56+
}
57+
58+
a {
59+
color: #00bc87;
60+
}
61+
62+
a:hover {
63+
color: #0c1b29;
64+
}
65+
66+
#hero p:before {
67+
background: white;
68+
}
69+
70+
#posts h2 a {
71+
color: #00bc87;
72+
font-family: 'Montserrat', sans-serif;
73+
}
74+
75+
h2 {
76+
font-family: 'Montserrat', sans-serif;
77+
color: #00bc87
78+
}
79+
80+
h3 {
81+
font-family: 'Montserrat', sans-serif;
82+
}
83+
84+
h4 {
85+
font-family: 'Montserrat', sans-serif;
86+
}
87+
88+
#hero {
89+
font-family: 'Source Sans Pro', sans-serif;
90+
}
91+
92+
#action-buttons p {
93+
font-family: 'Source Sans Pro', sans-serif;
94+
color: #0c1b29;
95+
}
96+
97+
#hero p {
98+
color: #0c1b29;
99+
}
100+
101+
blockquote {
102+
color: #0c1b29;
103+
}

static/images/dark_blue_logo.png

3.19 KB
Loading

0 commit comments

Comments
 (0)