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

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

first and basic version

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  border-bottom-width:1px;
21  border-bottom-style:dotted;
22  text-align:center;
23}
24  #guestbookAdd h4:hover {
25    color:#fff;
26  }
27
28#guestbookAdd table {
29  width:100%;
30  text-align:left;
31}
32
33#addComment {
34  margin-top:5px;
35}
36
37p.comment_count {
38  text-align:center;
39  font-style:italic;
40  font-weight:bold;
41  font-size:1.1em;
42}
43
44#guestbookAdd p, .commentElement p {
45  text-align:left;
46  margin-bottom:0.5em;
47  margin-top:0.5em;
48}
49
50.commentElement {
51  padding:0;
52  list-style:none;
53}
54
55.commentElement .description {
56  padding:7px !important;
57}
58
59.commentElement .commentHeader  {
60  background:#444;
61  margin:-7px;
62  margin-bottom:0;
63  padding:3px;
64  color:#ddd;
65  border-radius:5px 5px 0 0;
66}
67
68.commentElement .commentHeader a {
69  color:#FFE093;
70}
Note: See TracBrowser for help on using the repository browser.