-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (54 loc) · 798 Bytes
/
style.css
File metadata and controls
56 lines (54 loc) · 798 Bytes
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
50
51
52
53
54
55
56
#rowtitle {
background-color: orange;
width: 100%;
height: 100%;
}
#postrow {
background-color: orange;
}
#postrow:hover {
background-color: #ccc;
}
a:link,a:visited {
text-decoration: none;
color: maroon;
}
a:hover {
text-decoration: underline;
color: red;
}
.results_table {
text-align: left;
width: 420pt;
padding: 5pt;
border-radius: 5pt;
border: 1pt solid black;
}
.results_firstrow {
background-color: #ccc;
}
.results_table tr {
height: 25pt;
}
.results_table td,th{
padding: 5pt;
border-bottom: 1pt dashed #ccc;
}
.delete_post {
float: right;
font-weight: bold;
text-decoration: none;
}
#date_posted {
width:75pt;
}
#alert,#info {
border: 2pt dashed red;
width: 400pt;
text-align: center;
padding: 5pt;
margin: 5pt;
}
#info {
border: 2pt dashed green;
}