Skip to content

Commit 1aa32ec

Browse files
committed
clean up some more omitted changes from earlier
1 parent b70a6c5 commit 1aa32ec

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed

resources/session08/django_blog.css

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
body {
2+
background-color: #eee;
3+
color: #111;
4+
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
5+
margin:0;
6+
padding:0;
7+
}
8+
#container {
9+
margin:0;
10+
padding:0;
11+
margin-top: 0px;
12+
}
13+
#header {
14+
background-color: #333;
15+
border-botton: 1px solid #111;
16+
margin:0;
17+
padding:0;
18+
}
19+
#control-bar {
20+
margin: 0em 0em 1em;
21+
list-style: none;
22+
list-style-type: none;
23+
text-align: right;
24+
color: #eee;
25+
font-size: 80%;
26+
padding-bottom: 0.4em;
27+
}
28+
#control-bar li {
29+
display: inline-block;
30+
}
31+
#control-bar li a {
32+
color: #eee;
33+
padding: 0.5em;
34+
text-decoration: none;
35+
}
36+
#control-bar li a:hover {
37+
color: #cce;
38+
}
39+
#content {
40+
margin: 0em 1em 1em;
41+
}
42+
43+
ul#entries {
44+
list-style: none;
45+
list-style-type: none;
46+
}
47+
div.entry {
48+
margin-right: 2em;
49+
margin-top: 1em;
50+
border-top: 1px solid #cecece;
51+
}
52+
ul#entries li:first-child div.entry {
53+
border-top: none;
54+
margin-top: 0em;
55+
}
56+
div.entry-body {
57+
margin-left: 2em;
58+
}
59+
.notification {
60+
float: right;
61+
text-align: center;
62+
width: 25%;
63+
padding: 1em;
64+
}
65+
.info {
66+
background-color: #aae;
67+
}
68+
ul.categories {
69+
list-style: none;
70+
list-style-type: none;
71+
}
72+
ul.categories li {
73+
display: inline;
74+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.apps import AppConfig
2+
3+
4+
class MyblogConfig(AppConfig):
5+
name = 'myblog'

0 commit comments

Comments
 (0)