-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomment.css
56 lines (41 loc) · 981 Bytes
/
comment.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
input:required:invalid, input:focus:invalid {
background-image: url(/images/invalid.png);
background-position: right top;
background-repeat: no-repeat;
-moz-box-shadow: none;
}
input:required:valid {
background-image: url(/images/valid.png);
background-position: right top;
background-repeat: no-repeat;
}
#txtbox {
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
box-sizing:border-box;
display:block;/*reset from inline*/
width:100%;
height:200px;
margin:0;/*remove defaults*/
padding:4px;
background:#EEF;
border:1px solid #333;
overflow-y:auto;/*resets IE*/
overflow-x:hidden;/*resets IE*/
}
table#comments, td {
width: auto;
font-size: 1em;
padding: .25em;
vertical-align: top;
margin-left: 2em;
margin-right: 2em;
/*border: 1px solid black;*/
border-collapse: collapse;
}
td#comment_data{
border: 1px solid #cc95ea;
}
.comments_small {
font-size: 0.5em;
}