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

mirror-search.sh: fix wget_url links
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 04 21:23:50 2012 +0100 (2012-11-04)
parents c0e954250657
children c890b7f0723e
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: 8px solid #D66018; }
10 #header h1 { padding: 3px 0 0 42px; }
11 #network { padding: 12px 5px 0; }
12 #footer { background-color: #FFF; }
14 /* COMMON STYLES */
15 select:focus, select:hover, input:focus, input[type]:hover {
16 color: #000;
17 -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.3);
18 -moz-box-shadow: 0 0 4px rgba(0,0,0,0.3);
19 }
20 input, select {
21 -webkit-transition: all 0.3s ease-in-out;
22 -moz-transition: all 0.3s ease-in-out;
23 -o-transition: all 0.3s ease-in-out;
24 -ms-transition: all 0.3s ease-in-out;
25 transition: all 0.3s ease-in-out;
26 }
27 select, input[type="text"], input[type="submit"] {
28 font-size: 14px;
29 border: 1px solid #CCC;
30 -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
31 color: #444;
32 outline: 0 none;
33 }
35 /* TABLE */
36 table {
37 width: 100%;
38 font-size: 12px;
39 border: 1px solid #CCC;
40 -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
41 border-spacing: 0;
42 padding: 2px;
43 }
44 tr {
45 margin: 0;
46 padding: 4px;
47 }
48 td {
49 margin: 0;
50 padding: 6px;
51 vertical-align: top;
52 }
53 tr.even {
54 background-color: #F0F0F0;
55 }
56 td.first {
57 width: 1%;
58 white-space: nowrap;
59 }
60 td.pre {
61 padding-left: 2em;
62 white-space: nowrap;
63 }
66 /* --- */
68 input[type="submit"] {
69 padding: 4px;
70 margin: 0;
71 font-size: 14px;
72 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
73 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
74 /* -webkit-appearance: none;
75 -webkit-padding-end: 6px;
76 -webkit-padding-start: 6px;*/
77 }
79 div.form {
80 display: table;
81 table-layout: auto;
82 width: 100%;
83 padding: 0;
84 margin: 0 0 20px 0; /* t r b l */
85 }
87 #s_form {
88 display: table-row;
89 padding: 0;
90 margin: 0;
91 text-align: center;
92 border: 1pt solid yellow;
93 }
95 .small {
96 white-space: nowrap;
97 display: table-cell;
98 width: 10%;
99 }
101 select {
102 padding: 4px;
103 margin: 0 4px;
104 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
105 background-position: center right;
106 background-repeat: no-repeat;
107 -webkit-appearance: none;
108 cursor: pointer;
109 }
111 span.stretch {
112 display: table-cell;
113 width: 100%;
114 padding: 0 4px;
115 margin: 0;
116 }
118 input[type="text"] {
119 padding: 4px 0;
120 margin: 0;
121 border: 1px solid #CCC;
122 background-color: #FEFEFE;
123 }
125 div#ticker img {
126 float: right;
127 }
129 .summary {
130 margin-top: 12px;
131 text-align: center;
132 font-style: italic;
133 }
134 .match {
135 font-weight: bold;
136 color: #F33;
137 }
139 /* SYNTAX HIGHLIGHTER */
140 .r-comment { color: #888; }
141 .r-literal { color: #f35a00; }
142 .r-var { font-weight: bold; color: #070; }
143 .r-func { color: #4895DD; }
144 .r-url { text-decoration: none; }
145 .r-com, .r-scom { color: #4895DD; font-weight: bold; /*background-color: #cde;*/ }
146 .r-path { text-decoration: underline; color: brown; }
147 .r-param { font-weight: bold; color: #444; }