more update

master
Laurent 6 years ago
parent c3e3f6a50d
commit 9f1776a257
  1. BIN
      db.sqlite3
  2. 16
      news/static/news/css/app.css
  3. 1330
      news/static/news/css/foundation.css
  4. 2
      news/static/news/css/foundation.min.css
  5. 1
      news/static/news/css/foundation.min_light.css
  6. 1
      news/static/news/css/foundation.min_old.css
  7. 1330
      news/static/news/css/foundation_light.css
  8. 2
      news/templates/base.html
  9. 8
      news/templates/news/index.html
  10. 4
      news/templates/news/post.html

Binary file not shown.

@ -45,10 +45,11 @@ header h1 {
header h2 {
margin: 0;
padding: 0;
font-size: 18px;
font-size: 14px;
}
nav {
margin-top: 10px;
font-size: 14px;
}
@ -118,18 +119,18 @@ a h1 {
left: 12px;
}
.postintro {
.details {
font-size: 14px;
color: #999;
}
.quote {
padding: 20px;
padding: 15px;
background-color: #333;
}
@media print, screen and (min-width: 40em) {
.quote {
padding: 30px;
padding: 25px;
border-radius: 20px;
}
}
@ -145,8 +146,8 @@ a h1 {
.imgcontainer {
position: relative;
color: white;
border-bottom: 10px solid #333;
border-top: 10px solid #333;
border-bottom: 10px solid #111;
border-top: 10px solid #111;
}
@media print, screen and (min-width: 40em) {
.imgcontainer {
@ -176,7 +177,6 @@ a h1 {
.info {
width: 100%;
font-size: 14px;
}
@media print, screen and (min-width: 40em) {
.info {
@ -208,7 +208,7 @@ form textarea {
border-radius: 5px;
}
form textarea:active, form textarea:hover, form textarea:visited {
form textarea:active, form textarea:hover, form textarea:visited, form textarea:focus {
background: #444;
color: #fff;
padding:0px 5px;

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -26,7 +26,7 @@
<!-- Header -->
<header>
<h1><a href="{% url 'news:index' %}">poker rumble</a></h1>
<h2>REAL NEWS</h2>
<h2>HOME OF NEWS GRINDERS</h2>
<nav>
{% if user.is_authenticated %}

@ -13,7 +13,7 @@
<article>
<div class="postintro lat_padding">
<div class="details lat_padding">
{{ post.date }} - {{ post.author.username }}
</div>
@ -33,7 +33,7 @@
<div class="inside_image_bottom">
<div class="info">
<div class="details">
<a href="{% url 'news:post' post.id %}">{% if post.comment_set.count > 0 %}{{ post.comment_set.count }} comment{% if post.comment_set.count > 1 %}s{% endif %}{% else %}write comment{% endif %}</a>
</div>
<!-- Some comments -->
@ -57,7 +57,7 @@
</div>
<div class="post_padding">
<div class="info">
<div class="details info">
<a href="{% url 'news:post' post.id %}">{% if post.comment_set.count > 0 %}{{ post.comment_set.count }} comment{% if post.comment_set.count > 1 %}s{% endif %}{% else %}write comment{% endif %}</a>
</div>
<!-- Some comments -->
@ -77,7 +77,7 @@
</div>
<div class="post_padding">
<div class="info">
<div class="details info">
<a href="{% url 'news:post' post.id %}">{% if post.comment_set.count > 0 %}{{ post.comment_set.count }} comment{% if post.comment_set.count > 1 %}s{% endif %}{% else %}write comment{% endif %}</a>
</div>
<!-- Some comments -->

@ -18,7 +18,7 @@
</div>
{% endif %}
<div class="postintro">
<div class="details">
{{ post.date }} - {{ post.author.username }}
</div>
</div>
@ -62,7 +62,7 @@
{% for comment in comments %}
{% for n in comment.level %}<ul>{% endfor %}
<span class="info">{{ comment.author.username }} - {{ comment.date }} - score: {{ comment.score }}</span>
<span class="details info">{{ comment.author.username }} - {{ comment.date }} - score: {{ comment.score }}</span>
<br/>
{{ comment.body }}

Loading…
Cancel
Save