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

Last change on this file since 20221 was 20181, checked in by mistic100, 11 years ago

impove display, add LiveValidation

File size: 1.7 KB
Line 
1#guestbookAdd {
2  padding:15px;
3  width:550px;
4  margin:10px auto 25px auto;
5  border-radius:5px;
6  border:1px solid #555;
7  box-shadow:5px 5px 5px rgba(0, 0, 0, 0.25);
8  overflow:hidden;
9}
10
11#guestbookAdd h4 {
12  margin:0;
13  cursor:pointer;
14  text-align:center;
15  font-size:13px;
16}
17 
18
19.contact table {
20  width:100%;
21  text-align:left;
22}
23  .contact table td {
24    width:50%;
25    text-align:left;
26  }
27.contact label {
28  font-weight:bold;
29  display:block;
30}
31.contact input[type="text"], .contact textarea, .contact select {
32  border-radius:2px;
33  padding:3px;
34}
35.contact textarea {
36  width:535px;
37}
38.contact input[type="text"] {
39  width:260px;
40}
41
42
43.LV_validation_message{
44  display:block;
45  font-weight:bold;
46  margin:0 0 0 5px;
47}
48.LV_valid {
49   display:none;
50}
51.LV_invalid {
52  color:#cc0000;
53}
54.LV_invalid_field, 
55input.LV_invalid_field:hover, 
56input.LV_invalid_field:active,
57textarea.LV_invalid_field:hover, 
58textarea.LV_invalid_field:active {
59  border: 1px solid #cc0000;
60}
61
62
63p.comment_count {
64  text-align:center;
65  font-style:italic;
66  font-weight:bold;
67  font-size:1.1em;
68}
69
70.commentElement p {
71  text-align:left;
72  margin-bottom:0.5em;
73  margin-top:0.5em;
74}
75
76.commentElement {
77  padding:0 !important;
78  list-style:none;
79  text-align:left;
80  border:1px solid #555;
81  border-radius:5px;
82  margin:5px;
83  overflow:hidden;
84}
85  .commentElement .description {
86    padding:7px !important;
87    min-height:0;
88  }
89  .commentHeader  {
90    background:rgba(127,127,127,0.5);
91    margin:-7px;
92    margin-bottom:0;
93    padding:6px;
94    color:#ddd;
95    border-radius:5px 5px 0 0;
96  }
97  .commentAuthor {
98    font-size:1.1em;
99  }
100  .commentDate {
101    font-size:0.9em;
102  }
103  .commentHeader a {
104    color:#FFE093;
105  }
Note: See TracBrowser for help on using the repository browser.