source: main/trunk/greenstone3/web/interfaces/therin/css/comments.css@ 28644

Last change on this file since 28644 was 28644, checked in by jlwhisler, 10 years ago

A new interface created using a CSS template by luiszuno.com. Based on the default interface.

File size: 3.8 KB
Line 
1/* Vars ----------------------------------------------------*//* Mixins ----------------------------------------------------*//* COMMENTS ------------------------------------------------------------*/
2#comments-wrap {
3 padding-top: 40px;
4 margin-bottom: 60px;
5 /* COMMENTS PAGINATION ------------------------------------------------------------*/
6
7}
8#comments-wrap a {
9 color: #e37655;
10 text-decoration: none;
11}
12#comments-wrap .heading {
13 margin-bottom: 10px;
14 padding-top: 0px;
15 padding-bottom: 10px;
16 border-top: 0px solid #444444;
17 border-bottom: 5px solid #444444;
18}
19#comments-wrap .nocomments {
20 text-align: center;
21 padding: 20px;
22}
23#comments-wrap .commentlist {
24 margin: 0 0 30px 0;
25 list-style-type: none;
26 font-size: 14px;
27}
28#comments-wrap .commentlist .comment {
29 padding: 10 0 0px 0;
30 border-top: 1px #444444 solid;
31 margin: 0 0 18px;
32 padding: 25px 0px 0px 0px;
33 /* REPLY ------------------------------------------------------------*/
34
35 /* CHILDREN ------------------------------------------------------------*/
36
37}
38#comments-wrap .commentlist .comment .comment-body {
39 position: relative;
40 margin-bottom: 20px;
41 /* META ------------------------------------------------------------*/
42
43}
44#comments-wrap .commentlist .comment .comment-body .comment-author {
45 color: #444444;
46}
47#comments-wrap .commentlist .comment .comment-body .comment-author cite {
48 font-weight: bold;
49 font-style: normal;
50 color: #2C2D31;
51 margin: 0;
52 padding: 0;
53}
54#comments-wrap .commentlist .comment .comment-body .comment-author cite a {
55 padding: 0 15px 0 0;
56 color: #2C2D31;
57}
58#comments-wrap .commentlist .comment .comment-body .comment-author p:last-child {
59 margin: 0;
60}
61#comments-wrap .commentlist .comment .comment-body .comment-author .avatar {
62 float: left;
63 margin: 2px 15px 0 0;
64}
65#comments-wrap .commentlist .comment .comment-body .comment-meta {
66 margin: 0 0 40px 50px;
67 color: #a4a5aa;
68 font-size: 14px;
69 position: relative;
70}
71#comments-wrap .commentlist .comment .reply {
72 position: absolute;
73 right: 1px;
74 top: 1px;
75}
76#comments-wrap .commentlist .comment .reply .comment-reply-link {
77 display: block;
78 color: #444444;
79 font-size: 12px;
80 background: #f1f1f1;
81 padding: 3px 10px;
82 box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.22);
83}
84#comments-wrap .commentlist .comment .reply .comment-reply-link:hover {
85 color: #e37655;
86}
87#comments-wrap .commentlist .comment .children {
88 list-style-type: none;
89 margin-left: 74px;
90}
91#comments-wrap .commentlist .comment .children .comment {
92 border-bottom: none;
93 border-top: 1px #444444 solid;
94}
95#comments-wrap .commentlist .comment .children .comment .comment-body {
96 margin: 20px 0 0 0px;
97}
98#comments-wrap .commentlist .comment .children .comment .comment-body .avatar {
99 height: 35px;
100 width: 35px;
101}
102#comments-wrap .commentlist .comment .children .comment .comment-body .comment-meta {
103 margin-left: 40px;
104 margin-bottom: 18px;
105}
106#comments-wrap .commentlist > li:first-child {
107 border: none;
108 padding-top: 20px;
109}
110#comments-wrap .comments-pagination {
111 clear: both;
112 overflow: hidden;
113 padding: 20px 0;
114 position: relative;
115 font-size: 14px;
116 line-height: 13px;
117 margin-bottom: 10px;
118}
119#comments-wrap .comments-pagination span,
120#comments-wrap .comments-pagination a {
121 display: block;
122 float: left;
123 margin: 2px 2px 2px 0;
124 padding: 6px 9px 5px 9px;
125 text-decoration: none;
126 width: auto;
127 color: #fff;
128 background: #555;
129}
130#comments-wrap .comments-pagination span:hover,
131#comments-wrap .comments-pagination a:hover {
132 color: #fff;
133 background: #000000;
134}
135#comments-wrap .comments-pagination .current {
136 padding: 6px 9px 5px 9px;
137 background: #000000;
138 color: #fff;
139}
140#comments-wrap .comments-pagination .add-comment-link a {
141 font-size: 14px;
142 padding: 0 15px 0 0;
143}
144#comments-wrap .comment-body ul {
145 list-style-type: disc;
146}
147#comments-wrap .comment-body ol {
148 list-style-type: decimal;
149}
Note: See TracBrowser for help on using the repository browser.