Merge branch 'master' of github.com:AFPy/site

This commit is contained in:
Guillaume Ayoub 2017-09-22 14:59:47 +02:00
commit e66d62327e
3 changed files with 73 additions and 7 deletions

View File

@ -5,6 +5,31 @@ $action: #2e5cfd
$action-secondary: #ffcd05
$text: #eaeaea
a
color: $action-secondary
font-size: .8em
font-weight: 700
text-decoration: none
text-transform: uppercase
transition: color 250ms
&:hover
color: lighten($action-secondary, 10%)
input[type="submit"]
background: $action
border: 0
color: #fff
cursor: pointer
font-family: 'Hind', sans-serif
outline: transparent
padding: 1em 2em
text-transform: uppercase
transition: background 250ms
&:hover
background: lighten($action, 5%)
body
background: $bkg
color: $text
@ -43,6 +68,7 @@ main
margin: 0 auto
max-width: 1200px
order: 3
width: 100%
footer
background: $header
@ -124,5 +150,15 @@ h2
color: lighten($action-secondary, 10%)
h2
font-size: 1.2em
font-weight: 600
flex: 1 100%
article
background: lighten($bkg, 5%)
border: 1px solid $bkg
box-sizing: border-box
flex: 1 50%
padding: 2em
h2
font-size: 1.2em
font-weight: 600

View File

@ -1,4 +1,27 @@
@import url("https://fonts.googleapis.com/css?family=Hind:300,400,600,700");
a {
color: #ffcd05;
font-size: .8em;
font-weight: 700;
text-decoration: none;
text-transform: uppercase;
transition: color 250ms; }
a:hover {
color: #ffd738; }
input[type="submit"] {
background: #2e5cfd;
border: 0;
color: #fff;
cursor: pointer;
font-family: 'Hind', sans-serif;
outline: transparent;
padding: 1em 2em;
text-transform: uppercase;
transition: background 250ms; }
input[type="submit"]:hover {
background: #4770fd; }
body {
background: #25252D;
color: #eaeaea;
@ -34,7 +57,8 @@ main {
flex-grow: 1;
margin: 0 auto;
max-width: 1200px;
order: 3; }
order: 3;
width: 100%; }
footer {
background: #1d1e23;
@ -106,7 +130,15 @@ h2 {
#planet main article a:hover, #emplois main article a:hover, #index-news article a:hover {
color: #ffd738; }
#planet main article h2, #emplois main article h2, #index-news article h2 {
font-size: 1.2em;
font-weight: 600; }
flex: 1 100%; }
#planet main article article, #emplois main article article, #index-news article article {
background: #31313b;
border: 1px solid #25252D;
box-sizing: border-box;
flex: 1 50%;
padding: 2em; }
#planet main article article h2, #emplois main article article h2, #index-news article article h2 {
font-size: 1.2em;
font-weight: 600; }
/*# sourceMappingURL=../static/css/style.sass.css.map */

View File

@ -41,6 +41,4 @@
Vous pouvez aussi accéder au T'chat via un client irc : <a href="irc://irc.freenode.net/python-fr">irc://irc.freenode.net/python-fr</a>.
</p>
<iframe src="http://webchat.freenode.net/?nick=afpy_user&channels=afpy&prompt=1" width="100%" height="400"></iframe>
{% endblock main %}