mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
added elective selection algorithm
This commit is contained in:
6
_posts/2014-09-30-elective-selection-algorithm.md
Normal file
6
_posts/2014-09-30-elective-selection-algorithm.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
layout: post
|
||||||
|
image: elective.jpg
|
||||||
|
categories: [wona, column]
|
||||||
|
tag:
|
||||||
|
---
|
||||||
@ -209,6 +209,7 @@ header {
|
|||||||
border-bottom: 1px solid #ccc;
|
border-bottom: 1px solid #ccc;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
|
overflow-y: hidden;
|
||||||
-webkit-transition: all 0.2s ease-in;
|
-webkit-transition: all 0.2s ease-in;
|
||||||
-moz-transition: all 0.2s ease-in;
|
-moz-transition: all 0.2s ease-in;
|
||||||
-ms-transition: all 0.2s ease-in;
|
-ms-transition: all 0.2s ease-in;
|
||||||
@ -235,6 +236,10 @@ header {
|
|||||||
border-top: 2px solid #1ABC9C; }
|
border-top: 2px solid #1ABC9C; }
|
||||||
.article.almostfamous {
|
.article.almostfamous {
|
||||||
border-top: 2px solid #34495E; }
|
border-top: 2px solid #34495E; }
|
||||||
|
.article-cover-container {
|
||||||
|
height: 200px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
.post {
|
.post {
|
||||||
background: white;
|
background: white;
|
||||||
|
|||||||
BIN
images/posts/elective.jpg
Normal file
BIN
images/posts/elective.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 MiB |
@ -32,7 +32,9 @@ title: "Home"
|
|||||||
|
|
||||||
<a href="{{ post.url }}">
|
<a href="{{ post.url }}">
|
||||||
{% if post.image %}
|
{% if post.image %}
|
||||||
<img src="/images/posts/{{ post.image }}" class="article-cover">
|
<div class="article-cover-container">
|
||||||
|
<img src="/images/posts/{{ post.image }}" class="article-cover">
|
||||||
|
</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
<br><br>
|
<br><br>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
Reference in New Issue
Block a user