Re-style “delete reply” link.
[Sone.git] / src / main / resources / static / css / sone.css
1 /* Sone Main CSS File */
2
3 #sone {
4         width: 50em;
5         margin: auto;
6 }
7
8 #sone a {
9         color: inherit;
10         text-decoration: none;
11 }
12
13 #sone a:visited {
14         color: inherit;
15 }
16
17 #sone #sidebar {
18         width: 200px;
19         position: absolute;
20 }
21
22 #sone .profile-link {
23         font-weight: bold;
24         color: #23e;
25 }
26
27 #sone #profile .picture {
28         float: left;
29 }
30
31 #sone .nice-name {
32         font-weight: bold;
33 }
34
35 #sone #main {
36         margin-left: 200px;
37         padding-left: 1em;
38 }
39
40 #sone .post {
41         padding: 1ex 0px;
42         border-bottom: solid 1px #ccc;
43         margin-bottom: 1ex;
44 }
45
46 #sone .post .author {
47         display: inline;
48         font-weight: bold;
49 }
50
51 #sone .post .text {
52         display: inline;
53 }
54
55 #sone .post .status-line {
56         clear: both;
57 }
58
59 #sone .post .time {
60         color: #666;
61         float: left;
62         font-size: 85%;
63 }
64
65 #sone .post .delete {
66         float: right;
67 }
68
69 #sone .post .replies {
70         clear: both;
71 }
72
73 #sone .post .reply {
74         clear: both;
75         background-color: #eef;
76         font-size: 85%;
77         margin: 1ex 0px;
78         padding: 1ex;
79 }
80
81 #sone .post .reply div {
82         font-size: inherit; /* or else fproxy's css rules will fuck us. */
83 }
84
85 #sone .post .reply .time {
86         float: none;
87         display: inline;
88         color: #666;
89         font-size: inherit;
90 }
91
92 #sone .post .reply .status-line .delete {
93         float: none;
94         display: inline;
95 }
96
97 #sone .post .reply .status-line .delete:before {
98         content: ' · ';
99 }
100
101 #sone .post .create-reply {
102         clear: both;
103 }
104
105 #sone h1 {
106         font-family: inherit;
107         font-size: 200%;
108         font-weight: bold;
109 }
110
111 #sone .error label {
112         color: red;
113         font-weight: bold;
114 }
115
116 #sone input.createpost.default {
117         color: #888;
118 }