Skip to content

Commit 8ccedfa

Browse files
authored
Merge pull request python3statement#32 from Carreau/fancier-listing
Compact list (wrap on 2 multiple lines) and prepare for images.
2 parents 5aca327 + 5658aae commit 8ccedfa

File tree

10 files changed

+35
-16
lines changed

10 files changed

+35
-16
lines changed

_includes/css/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pre {
5353
/* ----- base elements ----- */
5454

5555
img {
56-
max-width:100%!important;
56+
max-width:100%;
5757
height:auto;
5858
vertical-align:middle;
5959
}

_sections/30-projects.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
---
22
title: Projects
3-
bg: '#9850ea'
3+
bg: '#7ec4ea'
44
fa-icon: group
5-
color: white
5+
color: black
66
style: center
77
---
88

99
# Participating Projects
1010

11-
- [IPython](https://ipython.org)
12-
- [Jupyter notebook](https://jupyter.org)
13-
- [Matplotlib](http://matplotlib.org/)
14-
- [SymPy](http://www.sympy.org/)
15-
- [xonsh](https://xon.sh)
16-
- [scikit-bio](http://scikit-bio.org)
17-
- [PyStan](https://github.com/stan-dev/pystan)
11+
- [![](assets/ipython.png)IPython](https://ipython.org)
12+
- [![](assets/jupyter.png)Jupyter notebook](https://jupyter.org)
13+
- [![](assets/matplotlib.png)Matplotlib](http://matplotlib.org/)
14+
- [![](assets/sympy.png)SymPy](http://www.sympy.org/)
15+
- [![](assets/xonsh.png)xonsh](http://xon.sh)
16+
- [![](assets/skbio.png)scikit-bio](http://scikit-bio.org)
17+
- [![](assets/pystan.png)PyStan](https://github.com/stan-dev/pystan)
18+
19+
&nbsp; <!--break separating project with image from without -->
20+
1821
- [An Introduction to Applied Bioinformatics](http://readiab.org)
1922
- [QIIME](http://qiime.org)
2023
- [gala](https://gala.readthedocs.io)

assets/ipython.png

44.3 KB
Loading

assets/jupyter.png

24.1 KB
Loading

assets/matplotlib.png

55.8 KB
Loading

assets/pystan.png

20.1 KB
Loading

assets/skbio.png

9.17 KB
Loading

assets/sympy.png

49.5 KB
Loading

assets/xonsh.png

43.3 KB
Loading

combo.css

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,28 @@ div.vis-item.vis-selected {
5050
color: #868686;
5151
}
5252

53-
/* enable that if too long, but seem to have some rendering issues.*/
54-
/*.p-sections20-projects ul {
55-
column-count: 3;
56-
list-style: none;
57-
}*/
58-
5953
.subtlecircle .fa-stack-1x{
6054
font-size: 80%;
6155
}
56+
57+
#sections30-projects ul:nth-child(2) a {
58+
text-decoration: none;
59+
}
60+
61+
62+
#sections30-projects li {
63+
display: inline-block;
64+
margin: 10px;
65+
padding: 20px;
66+
font-size: 19px;
67+
}
68+
69+
70+
#sections30-projects li a > img{
71+
margin: auto;
72+
margin-bottom:10px;
73+
display: block;
74+
max-height: 80px;
75+
max-width: 160px;
76+
vertical-align: middle;
77+
}

0 commit comments

Comments
 (0)