diff options
author | xian310 | 2012-12-21 19:59:39 +0100 |
---|---|---|
committer | Pim van den Berg | 2012-12-21 19:59:39 +0100 |
commit | ea946240c9a5a11d337b7afcc8590870bc18cd84 (patch) | |
tree | bcd0e0733775b430716ab06b6444aa8ccd6f3b00 /layout | |
parent | type/default: resolve division by zero warning (diff) | |
download | apt-panopticon_cgp-ea946240c9a5a11d337b7afcc8590870bc18cd84.zip apt-panopticon_cgp-ea946240c9a5a11d337b7afcc8590870bc18cd84.tar.gz apt-panopticon_cgp-ea946240c9a5a11d337b7afcc8590870bc18cd84.tar.bz2 apt-panopticon_cgp-ea946240c9a5a11d337b7afcc8590870bc18cd84.tar.xz |
replace the ajax expand system by a navigation menu
Signed-off-by: Pim van den Berg <pim@nethuis.nl>
Diffstat (limited to '')
-rw-r--r-- | layout/style.css | 42 |
1 files changed, 38 insertions, 4 deletions
diff --git a/layout/style.css b/layout/style.css index e478203..f61b0ad 100644 --- a/layout/style.css +++ b/layout/style.css | |||
@@ -25,8 +25,8 @@ h1 { | |||
25 | } | 25 | } |
26 | 26 | ||
27 | h2 { | 27 | h2 { |
28 | font-size: 1.5em; | 28 | font-size: 1.3em; |
29 | margin: 0.5em 0; | 29 | margin: 1em 0 0 0; |
30 | } | 30 | } |
31 | 31 | ||
32 | h3 { | 32 | h3 { |
@@ -43,7 +43,7 @@ a:hover { | |||
43 | } | 43 | } |
44 | 44 | ||
45 | table.summary th { | 45 | table.summary th { |
46 | width: 150px; | 46 | width: 300px; |
47 | font-weight: normal; | 47 | font-weight: normal; |
48 | text-align: left; | 48 | text-align: left; |
49 | } | 49 | } |
@@ -68,10 +68,10 @@ img { | |||
68 | ul { | 68 | ul { |
69 | margin: 0; | 69 | margin: 0; |
70 | padding: 0; | 70 | padding: 0; |
71 | list-style-type: none; | ||
71 | } | 72 | } |
72 | 73 | ||
73 | li { | 74 | li { |
74 | display: inline; | ||
75 | margin-left: 10px; | 75 | margin-left: 10px; |
76 | } | 76 | } |
77 | 77 | ||
@@ -94,3 +94,37 @@ hr { | |||
94 | font-weight: bold; | 94 | font-weight: bold; |
95 | color: #D50100; | 95 | color: #D50100; |
96 | } | 96 | } |
97 | |||
98 | .graphs { | ||
99 | display: inline-block; | ||
100 | margin: 0 0 0 20px; | ||
101 | width: 83%; | ||
102 | vertical-align: top; | ||
103 | } | ||
104 | |||
105 | .graphs img { | ||
106 | margin: 0 5px 12px 0; | ||
107 | vertical-align: top; | ||
108 | } | ||
109 | |||
110 | .plugins { | ||
111 | display: inline-block; | ||
112 | width: 12%; | ||
113 | } | ||
114 | |||
115 | .plugins ul > li:first-of-type { | ||
116 | display: block; | ||
117 | margin-bottom: 0.5em; | ||
118 | padding-bottom: 0.5em; | ||
119 | border-bottom: 1px dotted #ddd; | ||
120 | } | ||
121 | |||
122 | .selected:link, .selected:visited, .selected:active { | ||
123 | font-style: italic; | ||
124 | color: #4D79B5; | ||
125 | } | ||
126 | |||
127 | .time-range li { | ||
128 | display: inline-block; | ||
129 | margin-bottom: 0.3em; | ||
130 | } | ||