summaryrefslogtreecommitdiff
path: root/public/stylesheets/admin.css
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-04-13 21:43:18 +0200
committerhukl <contact@smyck.org>2009-04-13 21:43:18 +0200
commite4dd7a33a84d755f81fe5d07bcfb372f397f9cab (patch)
treeb4afee36f70a175545b26190da4a8384d0d654c3 /public/stylesheets/admin.css
parent381f45a8364f090fc5ad403b740646cdf4f9ccae (diff)
now the node index page is sexy too !
Diffstat (limited to 'public/stylesheets/admin.css')
-rw-r--r--public/stylesheets/admin.css53
1 files changed, 53 insertions, 0 deletions
diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css
index a23eea5..802ad31 100644
--- a/public/stylesheets/admin.css
+++ b/public/stylesheets/admin.css
@@ -1,3 +1,5 @@
1/* Layout */
2
1body { 3body {
2 font-family: Helvetica, Arial, sans-serif; 4 font-family: Helvetica, Arial, sans-serif;
3 font-size: 12px; 5 font-size: 12px;
@@ -8,6 +10,10 @@ a {
8 text-decoration: none; 10 text-decoration: none;
9} 11}
10 12
13a:hover {
14 color: #ff9600;
15}
16
11th { 17th {
12 text-transform: lowercase; 18 text-transform: lowercase;
13} 19}
@@ -17,6 +23,14 @@ th {
17 width: 899px; 23 width: 899px;
18} 24}
19 25
26/* Pagination */
27
28div.pagination span.current, div.pagination a:hover {
29 color: #ff9600;
30}
31
32/* Styles */
33
20.right { 34.right {
21 text-align: right; 35 text-align: right;
22} 36}
@@ -57,6 +71,45 @@ th {
57 background-color: #000000; 71 background-color: #000000;
58} 72}
59 73
74/* Nodes */
75
76table#node_table {
77 width: 899px;
78 border-collapse: collapse;
79}
80
81table#node_table tr {
82 height: 65px;
83}
84
85table#node_table th.title {
86 width: 450px;
87}
88
89table#node_table tr.header {
90 height: 20px;
91 text-align: left;
92}
93
94table#node_table td {
95 padding-top: 0px;
96 padding-bottom: 0px;
97 padding-right: 25px;
98 padding-left: 0px;
99}
100
101table#node_table tr.header:hover {
102 background-color: #ffffff;
103}
104
105table#node_table tr:hover {
106 background-color: #f1f1f1;
107}
108
109table#node_table .actions {
110 text-transform: lowercase;
111}
112
60/* Revisions */ 113/* Revisions */
61 114
62table#revisions { 115table#revisions {