Skip to content

Commit 641e53e

Browse files
committed
Make fancier listing with images.
1 parent 42c9c2a commit 641e53e

File tree

8 files changed

+33
-11
lines changed

8 files changed

+33
-11
lines changed

_sections/30-projects.md

+11-8
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/)
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/skbio.png)scikit-bio](http://scikit-bio.org)
16+
- [![](assets/pystan.png)PyStan](https://github.com/stan-dev/pystan)
17+
18+
&nbsp; <!--break separating project with image from without -->
19+
1520
- [xonsh](https://xon.sh)
16-
- [scikit-bio](http://scikit-bio.org)
17-
- [PyStan](https://github.com/stan-dev/pystan)
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

combo.css

+22-3
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ div.vis-item.vis-selected {
5454
font-size: 80%;
5555
}
5656

57+
#sections30-projects ul:nth-child(2) a {
58+
text-decoration: none;
59+
}
60+
5761

5862
#sections30-projects li {
5963
display: inline-block;
@@ -62,9 +66,24 @@ div.vis-item.vis-selected {
6266
font-size: 19px;
6367
}
6468

65-
#sections30-projects li > img{
69+
70+
#sections30-projects li a > img{
6671
margin: auto;
72+
margin-bottom:10px;
6773
display: block;
68-
max-width: 100px;
69-
max-height: 100px;
74+
max-height: 80px;
75+
max-width: 160px;
76+
vertical-align: middle;
77+
filter: grayscale(90%);
78+
-webkit-filter: grayscale(90%);
79+
ransition: 250ms filter linear;
80+
-webkit-transition : -webkit-filter 250ms linear
7081
}
82+
83+
#sections30-projects li a > img:hover{
84+
85+
filter: none;
86+
-webkit-filter: none;
87+
}
88+
89+

0 commit comments

Comments
 (0)