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

pkgs: huge code rewriting; tested on the SliTaz 4.0 but not on the real server; for more info see README
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Apr 16 11:34:57 2012 +0300 (2012-04-16)
parents 09934686c8d7
children 0a9608f5d6d9
line source
2 #s_form {
3 margin: auto;
4 text-align: center;
5 padding: 20px;
6 }
8 /* Be compatible with old FF and Webkit version. */
9 input[type="submit"] {
10 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
11 -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
12 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
13 }
15 #header {
16 border-bottom: 8px solid #D66018;
17 }
19 #header h1 {
20 padding: 3px 0 0 42px;
21 }
23 #network {
24 padding: 12px 5px 0;
25 }
27 table, input, textarea, select {
28 -moz-border-radius: 4px;
29 -webkit-border-radius: 4px;
30 border-radius: 4px;
31 }
33 input[type=text] {
34 width: 40%;
35 }
37 #footer {
38 background-color: #FFF;
39 }
41 select:focus, select:hover, input:focus, input:hover {
42 color: #000;
43 outline: 0 none;
44 -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.3);
45 -moz-box-shadow: 0 0 4px rgba(0,0,0,0.3);
46 }
48 input, select {
49 -webkit-transition: all 0.3s ease-in-out;
50 -moz-transition: all 0.3s ease-in-out;
51 -o-transition: all 0.3s ease-in-out;
52 -ms-transition: all 0.3s ease-in-out;
53 transition: all 0.3s ease-in-out;
54 }
56 input[type="submit"], input[type="text"], textarea {
57 color: #444;
58 border: 1px solid #CCC;
59 padding: 4px;
60 margin: 4px 0px;
61 font-size: 14px;
62 line-height: 1.2em;
63 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
64 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
65 -webkit-appearance: none;
66 -webkit-padding-end: 6px;
67 -webkit-padding-start: 6px;
68 }
70 input[type="submit"]:hover {
71 color: #000;
72 }
74 input[type="text"], textarea { background: #fefefe; border: 1px solid #ccc; }
75 /*input[type="file"] { border: 2px solid #ddd; }*/
76 /*input[type="checkbox"] { background: #fefefe; }*/
78 input[type=submit], select { cursor: pointer; }
80 select {
81 background-image: url(style/images/down.png),
82 -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
83 background-position: center right;
84 background-repeat: no-repeat;
86 color: #444444;
87 border: 1px solid #cccccc;
88 padding: 4px 32px 4px 4px;
89 margin: 4px 0px;
90 font-size: 14px;
91 line-height: 1.2em;
92 -webkit-appearance: none;
93 }
95 poption {
96 padding: 4px 32px 4px 4px;
97 }