comparison server_css/blog.css @ 389:2d782349b88a

server_side: display blog comments when you click on a main item header or title
author souliane <souliane@mailoo.org>
date Tue, 25 Feb 2014 17:50:47 +0100
parents ce5b33f499c5
children a3d58514a4d0
comparison
equal deleted inserted replaced
388:893451e35686 389:2d782349b88a
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */ 17 */
18 18
19 .mblog_title { 19 .mblog_title, .mblog_title a {
20 text-align: center; 20 text-align: center;
21 text-decoration: none;
21 font-size: x-large; 22 font-size: x-large;
22 font-weight: bold; 23 font-weight: bold;
23 margin-bottom: 40px; 24 margin-bottom: 40px;
24 font-family: FreeSans, Liberation Sans, Arial, sans-serif; 25 font-family: FreeSans, Liberation Sans, Arial, sans-serif;
25 color: rgb(51, 51, 51); 26 color: rgb(51, 51, 51);
37 box-shadow: 0px 0px 0.5em rgb(153, 153, 153); 38 box-shadow: 0px 0px 0.5em rgb(153, 153, 153);
38 font-family: FreeSans, Liberation Sans, Arial, sans-serif; 39 font-family: FreeSans, Liberation Sans, Arial, sans-serif;
39 color: rgb(51, 51, 51); 40 color: rgb(51, 51, 51);
40 } 41 }
41 42
42 .mblog_timestamp { 43 .mblog_comment {
43 display: block; 44 }
45
46 .mblog_header {
44 font-size: small; 47 font-size: small;
45 border-bottom: 1px dashed LightGrey; 48 border-bottom: 1px dashed LightGrey;
46 color: gray; 49 color: gray;
50 display: table;
51 width: 100%;
52 }
53
54 .mblog_metadata {
55 display: table-row;
56 width: 100%;
57 }
58
59 .mblog_author {
60 display: table-cell;
61 }
62
63 .mblog_timestamp {
64 display: table-cell;
47 text-align: right; 65 text-align: right;
48 } 66 }
49 67
50 .mblog_content { 68 .mblog_content {
51 display: block; 69 display: block;
52 padding-top: 5px; 70 padding-top: 5px;
53 } 71 }
54 72
55 h1, h2, h3, h4, h5, h6 { 73 .item_link {
74 text-decoration: none;
75 }
76
77 .mblog_entry h1, h2, h3, h4, h5, h6 {
56 border-bottom: 1px solid rgb(170, 170, 170); 78 border-bottom: 1px solid rgb(170, 170, 170);
79 }
80
81 .mblog_entry h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
82 text-decoration: none;
83 color: rgb(51, 51, 51);
57 } 84 }
58 85
59 img { 86 img {
60 max-width: 100%; 87 max-width: 100%;
61 } 88 }