Make profile link smaller.
[Sone.git] / src / main / resources / static / css / sone.css
1 /* Sone Main CSS File */
2
3 /* first, override some fproxy rules. */
4 #sone .post .reply div,#sone .post .time,#sone .post .delete,#sone .post .show-reply-form
5         {
6         font-size: inherit;
7 }
8
9 #sone form {
10         margin: 0px;
11 }
12
13 /* now for the real stuff. */
14
15 #sone {
16         width: 50em;
17         margin: auto;
18 }
19
20 #sone .hidden {
21         display: none;
22 }
23
24 #sone a {
25         color: inherit;
26         text-decoration: none;
27 }
28
29 #sone a:visited {
30         color: inherit;
31 }
32
33 #sone #sidebar {
34         width: 200px;
35         position: absolute;
36 }
37
38 #sone .profile-link {
39         font-weight: bold;
40         color: #23e;
41 }
42
43 #sone #profile .picture {
44         float: left;
45 }
46
47 #sone #profile .edit-profile-link {
48         font-size: 85%;
49 }
50
51 #sone .nice-name {
52         font-weight: bold;
53 }
54
55 #sone #main {
56         margin-left: 200px;
57         padding-left: 1em;
58 }
59
60 #sone .post {
61         padding: 1ex 0px;
62         border-bottom: solid 1px #ccc;
63         margin-bottom: 1ex;
64 }
65
66 #sone .post .author {
67         display: inline;
68         font-weight: bold;
69 }
70
71 #sone .post .text {
72         display: inline;
73         white-space: pre-wrap;
74 }
75
76 #sone .post .status-line {
77         clear: both;
78         font-size: 85%;
79 }
80
81 #sone .post .time {
82         display: inline;
83         color: #666;
84 }
85
86 #sone .post .delete {
87         display: inline;
88 }
89
90 #sone .post .delete:before {
91         content: ' ‧ ';
92 }
93
94 #sone .post .replies {
95         clear: both;
96         padding-top: 0.2ex;
97 }
98
99 #sone .post .reply {
100         clear: both;
101         background-color: #eef;
102         font-size: 85%;
103         margin: 1ex 0px;
104         padding: 1ex;
105 }
106
107 #sone .post .reply .time {
108         float: none;
109         display: inline;
110         color: #666;
111         font-size: inherit;
112 }
113
114 #sone .post .show-reply-form {
115         display: inline;
116 }
117
118 #sone .post .show-reply-form:before {
119         content: ' ‧ ';
120 }
121
122 #sone .post .reply .status-line .delete {
123         float: none;
124         display: inline;
125 }
126
127 #sone .post .reply .status-line .delete:before {
128         content: ' · ';
129 }
130
131 #sone .post .create-reply {
132         clear: both;
133         background-color: #eef;
134         padding: 0.5ex;
135 }
136
137 #sone .post .create-reply.light button {
138         display: none;
139 }
140
141 #sone h1 {
142         font-family: inherit;
143         font-size: 200%;
144         font-weight: bold;
145 }
146
147 #sone .error label {
148         color: red;
149         font-weight: bold;
150 }
151
152 #sone input.createpost.default, input.reply-input.default {
153         color: #888;
154 }