Skip to content

Commit 8b714c5

Browse files
committed
removes key features title
1 parent ae9b506 commit 8b714c5

File tree

3 files changed

+1
-21
lines changed

3 files changed

+1
-21
lines changed

config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ params:
5656
url: /case-studies/cricket-analytics
5757

5858
keyfeatures:
59-
title: KEY FEATURES
6059
features:
6160
- title: Powerful N-dimensional arrays
6261
text: Fast and versatile, the NumPy vectorization, indexing and broadcasting concepts are the de-facto standards of array computing today.

layouts/partials/keyfeatures.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
{{- $keyfeatures := .Site.Params.keyfeatures }}
2-
{{- $title := index $keyfeatures "title" }}
32
{{- $features := index $keyfeatures "features" }}
43

54
<section class="keyfeatures">
65
<div class="container">
7-
<h1 class="keyfeatures-header">
8-
{{ $title }}
9-
</h1>
106
<div class="keyfeatures-box-container">
117
{{- range $features }}
128
<div class="keyfeatures-box-content keyfeatures-underline">

static/css/keyfeatures.css

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,12 @@
11
.keyfeatures {
2-
margin: 50px 0;
2+
margin: 30px 0;
33
}
44

55
.keyfeatures .container {
66
display: flex;
77
flex-direction: column;
88
}
99

10-
.keyfeatures-header {
11-
display: flex;
12-
flex-direction: column;
13-
width: 100%;
14-
align-items: center;
15-
letter-spacing: 1.5px;
16-
font-size: 27px;
17-
}
18-
1910
.keyfeatures-box-container {
2011
display: flex;
2112
flex-wrap: wrap;
@@ -66,12 +57,6 @@
6657
}
6758
}
6859

69-
@media only screen and (max-width: 525px) {
70-
.keyfeatures-header {
71-
flex-direction: column;
72-
}
73-
}
74-
7560
@media only screen and (max-width: 425px) {
7661
.keyfeatures .container {
7762
align-items: center;

0 commit comments

Comments
 (0)