tazpkg view tazpanel/pkgs.css @ rev 731

pkgs.cgi: style tag cloud.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Dec 28 06:11:25 2014 +0200 (2014-12-28)
parents f9554d3c23b7
children 3b6602629dc0
line source
1 /* links classes:
2 * pkg - package (not installed);
3 * pkgi - package (installed);
4 * pkgib - package (installed and blocked);
5 * w - web site
6 *
7 * you can style links using icons and/or color
8 */
10 a.pkg {
11 background: url(images/tazpkg.png) no-repeat left; }
12 a.pkgi, a.pkgib {
13 background: url(images/tazpkg-installed.png) no-repeat left; }
14 /*
15 a.pkgi {
16 color: green; }
17 */
18 a.pkgib {
19 color: red; }
20 a.w, .pkglist td:nth-child(4) a {
21 background: url(images/browser.png) no-repeat left; }
23 a.pkg, a.pkgi, a.pkgib, a.w, .pkglist td:nth-child(4) a {
24 margin: 0; padding: 0 0 0 17px;
25 min-height: 16px; min-width: 16px;
26 display: inline-block; }
29 .pkglist td:nth-child(1), .filelist td:nth-child(1) {
30 white-space: nowrap;
31 }
33 .pkglist td:nth-child(1) a, .filelist td:nth-child(1) a {
34 max-width: 12em;
35 }
37 .pkglist td:nth-child(2) {
38 max-width: 7em;
39 }
41 .pkglist td:nth-child(1) a, .pkglist td:nth-child(2),
42 .filelist td:nth-child(1) a, .filelist td:nth-child(2) {
43 white-space: nowrap;
44 overflow: hidden;
45 text-overflow: ellipsis; -o-text-overflow: ellipsis;
46 }
48 .filelist td:nth-child(2) {
49 max-width: 30em;
50 }
52 #actions { overflow: auto; }
54 a.pages {
55 padding: 0.5ex;
56 margin: 0.5ex 0;
57 border: 1px solid #AAA;
58 width: 3ex;
59 display: inline-block;
60 text-align: center;
61 }
62 a.pages:hover {
63 border: 1px solid #F94;
64 background: #F94;
65 color: black;
66 }
67 a.pages.current, a.pages.current:hover {
68 font-weight: bold;
69 border: 1px solid #07F;
70 background: #07F;
71 color: #eee;
72 }
74 a.tag1 { font-size: 0.9em; color: #678; }
75 a.tag2 { font-size: 1.0em; color: #444; }
76 a.tag3 { font-size: 1.1em; color: #16A; }
77 a.tag4 { font-size: 1.3em; color: #282; }
78 a.tag5 { font-size: 1.5em; color: #828; }
79 a.tag6 { font-size: 1.8em; color: #862; }
80 a.tag7 { font-size: 2.1em; color: #FA0; }
81 a.tag8 { font-size: 2.4em; color: #F00; }
82 a.tag1, a.tag2, a.tag3, a.tag4, a.tag5, a.tag6, a.tag7, a.tag8 {
83 display: inline-block;
84 white-space: nowrap;
85 vertical-align: middle;
86 padding: 0.2em 0.5em;
87 }
88 a.tag1:hover, a.tag2:hover, a.tag3:hover, a.tag4:hover, a.tag5:hover, a.tag6:hover, a.tag7:hover, a.tag8:hover {
89 outline: 1.5pt solid #FC8; }