Skip to content

Commit 185969a

Browse files
committed
consolidate cardlist css
documentation and try cards use the same layout try cards make slight modifications: - add images - center text - larger headings
1 parent 27d2c19 commit 185969a

File tree

6 files changed

+95
-114
lines changed

6 files changed

+95
-114
lines changed

_includes/head.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
<!-- Bootstrap Core CSS -->
1515
<link rel="stylesheet" href="{{ "/css/bootstrap.min.css" | prepend: site.baseurl }}">
1616
<link rel="stylesheet" href="{{ "/css/logo-nav.css" | prepend: site.baseurl }}">
17-
<link rel="stylesheet" href="{{ "/css/documentation.css" | prepend: site.baseurl }}">
18-
<link rel="stylesheet" href="{{ "/css/try.css" | prepend: site.baseurl }}">
17+
<link rel="stylesheet" href="{{ "/css/cardlist.css" | prepend: site.baseurl }}">
1918
<link rel="stylesheet" href="{{ "/css/github-buttons.css" | prepend: site.baseurl }}">
2019
<link rel="icon" type="image/png" href="favicon.ico" />
2120
<link href="{{site.baseurl}}/assets/apple-touch-icon.png" rel="apple-touch-icon" />

_layouts/documentation.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ <h2>Documentation</h2>
1212
<section>
1313
<div class="top-section-border">
1414
<div class="container">
15-
<div class="row docs-cards">
15+
<div class="row cardlist">
1616
{%- for card in site.data.documentation -%}
17-
<div class="col-lg-4 col-md-6 col-sm-6 docs-card-col">
18-
<div class="docs-card">
19-
<div class="docs-card-heading">
17+
<div class="col-lg-4 col-md-6 col-sm-6 cardlist-col">
18+
<div class="cardlist-card doc-card">
19+
<div class="card-heading">
2020
<h4>{{card[0]}}</h4>
2121
</div>
22-
<div class="docs-card-body">
22+
<div class="card-body">
2323
<ul>
2424
{%- for item in card[1] %}
2525
<li><a href="{{item[1]}}">{{item[0]}}</a></li>

_layouts/try.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ <h2>Try Jupyter</h2>
2323
<section>
2424
<div class="top-section-border">
2525
<div class="container">
26-
<div class="row try-cards">
26+
<div class="row cardlist">
2727
{%- for item in site.data.try -%}
2828
<a href="{{ item['url'] }}" class="try-link">
29-
<div class="col-lg-4 col-md-6 col-sm-6">
30-
<div class="try-card">
31-
<div class="try-card-header">
32-
<h3 class="text-center">{{ item['title'] }}</h3>
29+
<div class="col-lg-4 col-md-6 col-sm-6 cardlist-col">
30+
<div class="cardlist-card try-card text-center">
31+
<div class="card-heading">
32+
<h3>{{ item['title'] }}</h3>
33+
</div>
34+
<div class="card-body">
35+
<img class="try-logo" src="{{ site.baseurl }}/assets/try/{{ item['logo'] }}"/>
36+
<p>{{ item['description'] }}</p>
3337
</div>
34-
<img src="{{ site.baseurl }}/assets/try/{{ item['logo'] }}"/>
35-
<p>
36-
{{ item['description'] }}
37-
</p>
3838
</div>
3939
</div>
4040
</a>

css/cardlist.css

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
/* cardlist used by documentation and try pages */
2+
3+
.cardlist {
4+
margin-bottom: 20px;
5+
}
6+
7+
.cardlist-col {
8+
padding: 16px;
9+
}
10+
11+
.cardlist-card {
12+
height: 240px;
13+
background: white;
14+
box-shadow: 0 3px 6px rgba(0, 0, 0, .24);
15+
border-radius: 2px;
16+
}
17+
18+
.card-heading {
19+
padding: 16px;
20+
/* color is on purpose not Jupyter Orange */
21+
background: #1976D2;
22+
color: white;
23+
font-size: 14px;
24+
font-weight: normal;
25+
line-height: 14px;
26+
border-top-left-radius: 2px;
27+
border-top-right-radius: 2px;
28+
}
29+
30+
.card-body {
31+
padding: 16px;
32+
border-bottom-left-radius: 2px;
33+
border-bottom-right-radius: 2px;
34+
flex: 0 1 auto;
35+
}
36+
37+
.card-body ul {
38+
padding-left: 0px;
39+
}
40+
41+
.card-body li {
42+
list-style: none;
43+
padding: 4px 0px 4px 0px;
44+
font-size: 14px;
45+
}
46+
47+
48+
/* extra style for try cards */
49+
50+
/* try cards are links: eliminate text decoration and
51+
highlight on hover by extending shadow
52+
*/
53+
54+
a.try-link {
55+
color: inherit;
56+
text-decoration: none;
57+
}
58+
59+
a.try-link:visited {
60+
color: inherit;
61+
}
62+
63+
.try-card:hover {
64+
box-shadow: 0px 6px 6px #aaa;
65+
}
66+
67+
/* try cards need to be a little taller */
68+
.cardlist-card.try-card {
69+
height: 300px;
70+
}
71+
72+
/* shrink-to-fit logos */
73+
74+
img.try-logo {
75+
height: 100px;
76+
width: 100%;
77+
object-fit: contain;
78+
margin: 12px auto;
79+
}
80+

css/documentation.css

-50
This file was deleted.

css/try.css

-48
This file was deleted.

0 commit comments

Comments
 (0)