slitaz-forge view pkgs/pkgs.css @ rev 593

pkgs/search.sh: set defaults to desc.
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Wed Jun 03 10:26:51 2015 +0300 (2015-06-03)
parents c890b7f0723e
children d50b1e11ce39
line source
2 /* Be compatible with old FF and Webkit version. */
3 /*input[type="submit"] {
4 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
5 -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
6 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
7 }*/
9 #header { border-bottom: 4px solid #ccc; background: #222; }
10 #header h1 { padding: 3px 0 0 42px; }
11 #footer { background-color: #FFF; }
13 /* COMMON STYLES */
14 select:focus, select:hover, input:focus, input[type]:hover {
15 color: #000;
16 -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.3);
17 -moz-box-shadow: 0 0 4px rgba(0,0,0,0.3);
18 }
19 input, select {
20 -webkit-transition: all 0.3s ease-in-out;
21 -moz-transition: all 0.3s ease-in-out;
22 -o-transition: all 0.3s ease-in-out;
23 -ms-transition: all 0.3s ease-in-out;
24 transition: all 0.3s ease-in-out;
25 }
26 select, input[type="text"], input[type="submit"] {
27 font-size: 14px;
28 border: 1px solid #CCC;
29 -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
30 color: #444;
31 outline: 0 none;
32 }
34 /* TABLE */
35 table {
36 width: 100%;
37 font-size: 12px;
38 border: 1px solid #CCC;
39 -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
40 border-spacing: 0;
41 padding: 2px;
42 }
43 tr {
44 margin: 0;
45 padding: 4px;
46 }
47 td {
48 margin: 0;
49 padding: 6px;
50 vertical-align: top;
51 }
52 tr.even {
53 background-color: #F0F0F0;
54 }
55 td.first {
56 width: 1%;
57 white-space: nowrap;
58 }
59 td.pre {
60 padding-left: 2em;
61 white-space: nowrap;
62 }
65 /* --- */
67 input[type="submit"] {
68 padding: 4px;
69 margin: 0;
70 font-size: 14px;
71 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
72 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
73 /* -webkit-appearance: none;
74 -webkit-padding-end: 6px;
75 -webkit-padding-start: 6px;*/
76 }
78 div.form {
79 display: table;
80 table-layout: auto;
81 width: 100%;
82 padding: 0;
83 margin: 0 0 20px 0; /* t r b l */
84 }
86 #s_form {
87 display: table-row;
88 padding: 0;
89 margin: 0;
90 text-align: center;
91 border: 1pt solid yellow;
92 }
94 .small {
95 white-space: nowrap;
96 display: table-cell;
97 width: 10%;
98 }
100 select {
101 padding: 4px;
102 margin: 0 4px;
103 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
104 background-position: center right;
105 background-repeat: no-repeat;
106 -webkit-appearance: none;
107 cursor: pointer;
108 }
110 span.stretch {
111 display: table-cell;
112 width: 100%;
113 padding: 0 4px;
114 margin: 0;
115 }
117 input[type="text"] {
118 padding: 4px 0;
119 margin: 0;
120 border: 1px solid #CCC;
121 background-color: #FEFEFE;
122 }
124 div#ticker img {
125 float: right;
126 }
128 .summary {
129 margin-top: 12px;
130 text-align: center;
131 font-style: italic;
132 }
133 .match {
134 font-weight: bold;
135 color: #F33;
136 }
138 /* SYNTAX HIGHLIGHTER */
139 .r-comment { color: #888; }
140 .r-literal { color: #f35a00; }
141 .r-var { font-weight: bold; color: #070; }
142 .r-func { color: #4895DD; }
143 .r-url { text-decoration: none; }
144 .r-com, .r-scom { color: #4895DD; font-weight: bold; /*background-color: #cde;*/ }
145 .r-path { text-decoration: underline; color: brown; }
146 .r-param { font-weight: bold; color: #444; }