comparison static/js/tinymce/examples/css/content.css @ 45:966cde8635c0

For issue #3, created a separate news app. Created import management command. Using TinyMCE editor in the admin. News model now stores HTML. The news page is now paginated. Each story has a perma-link now.
author Brian Neal <bgneal@gmail.com>
date Thu, 15 Mar 2012 20:02:39 -0500
parents
children
comparison
equal deleted inserted replaced
44:42a6bde9913c 45:966cde8635c0
1 body {
2 background-color: #FFFFFF;
3 font-family: Verdana, Arial, Helvetica, sans-serif;
4 font-size: 10px;
5 scrollbar-3dlight-color: #F0F0EE;
6 scrollbar-arrow-color: #676662;
7 scrollbar-base-color: #F0F0EE;
8 scrollbar-darkshadow-color: #DDDDDD;
9 scrollbar-face-color: #E0E0DD;
10 scrollbar-highlight-color: #F0F0EE;
11 scrollbar-shadow-color: #F0F0EE;
12 scrollbar-track-color: #F5F5F5;
13 }
14
15 td {
16 font-family: Verdana, Arial, Helvetica, sans-serif;
17 font-size: 10px;
18 }
19
20 pre {
21 font-family: Verdana, Arial, Helvetica, sans-serif;
22 font-size: 10px;
23 }
24
25 .example1 {
26 font-weight: bold;
27 font-size: 14px
28 }
29
30 .example2 {
31 font-weight: bold;
32 font-size: 12px;
33 color: #FF0000
34 }
35
36 .tablerow1 {
37 background-color: #BBBBBB;
38 }
39
40 thead {
41 background-color: #FFBBBB;
42 }
43
44 tfoot {
45 background-color: #BBBBFF;
46 }
47
48 th {
49 font-family: Verdana, Arial, Helvetica, sans-serif;
50 font-size: 13px;
51 }
52
53 /* Basic formats */
54
55 .bold {
56 font-weight: bold;
57 }
58
59 .italic {
60 font-style: italic;
61 }
62
63 .underline {
64 text-decoration: underline;
65 }
66
67 /* Global align classes */
68
69 .left {
70 text-align: inherit;
71 }
72
73 .center {
74 text-align: center;
75 }
76
77 .right {
78 text-align: right;
79 }
80
81 .full {
82 text-align: justify
83 }
84
85 /* Image and table specific aligns */
86
87 img.left, table.left {
88 float: left;
89 text-align: inherit;
90 }
91
92 img.center, table.center {
93 margin-left: auto;
94 margin-right: auto;
95 text-align: inherit;
96 }
97
98 img.center {
99 display: block;
100 }
101
102 img.right, table.right {
103 float: right;
104 text-align: inherit;
105 }