source: extensions/GuestBook/template/style.css @ 16368

Last change on this file since 16368 was 15948, checked in by mistic100, 12 years ago

-add option to remove rating
-improve message header

File size: 1.3 KB
Line 
1#guestbookAdd {
2  padding:15px;
3  width:180px;
4  margin:10px auto 25px auto;
5  background: #333333;
6  background: -moz-linear-gradient(top,  #333333 0%, #252525 100%);
7  background: -webkit-linear-gradient(top,  #333333 0%,#252525 100%);
8  background: -o-linear-gradient(top,  #333333 0%,#252525 100%);
9  background: -ms-linear-gradient(top,  #333333 0%,#252525 100%);
10  background: linear-gradient(top,  #333333 0%,#252525 100%);
11  border-radius:5px;
12  border:1px solid #555;
13  box-shadow:5px 5px 5px rgba(0, 0, 0, 0.25);
14  color:#aaa;
15}
16
17#guestbookAdd h4 {
18  margin:0;
19  cursor:pointer;
20  text-align:center;
21}
22  #guestbookAdd h4:hover {
23    color:#fff;
24  }
25
26#guestbookAdd table {
27  width:100%;
28  text-align:left;
29}
30
31#addComment {
32  margin-top:5px;
33}
34
35p.comment_count {
36  text-align:center;
37  font-style:italic;
38  font-weight:bold;
39  font-size:1.1em;
40}
41
42#guestbookAdd p, .commentElement p {
43  text-align:left;
44  margin-bottom:0.5em;
45  margin-top:0.5em;
46}
47
48.commentElement {
49  padding:0;
50  list-style:none;
51}
52  .commentElement .description {
53    padding:7px !important;
54  }
55  .commentHeader  {
56    background:#444;
57    margin:-7px;
58    margin-bottom:0;
59    padding:6px;
60    color:#ddd;
61    border-radius:5px 5px 0 0;
62  }
63  .commentAuthor {
64    font-size:1.1em;
65  }
66  .commentDate {
67    font-size:0.9em;
68  }
69  .commentHeader a {
70    color:#FFE093;
71  }
Note: See TracBrowser for help on using the repository browser.