wok-current diff dillo/stuff/style.css @ rev 22748
updated exiftool (11.28 -> 11.84)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jan 24 11:07:01 2020 +0100 (2020-01-24) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dillo/stuff/style.css Fri Jan 24 11:07:01 2020 +0100 1.3 @@ -0,0 +1,102 @@ 1.4 +/* CSS style for SliTaz GNU/Linux Web Home */ 1.5 + 1.6 +body { 1.7 + background: #ffffff; 1.8 + color: black; 1.9 + font: 13px sans-serif, vernada, arial; 1.10 + margin: 0; 1.11 + min-width: 640px; 1.12 +} 1.13 + 1.14 +a { text-decoration: underline; color: #215090; } 1.15 +a:hover { text-decoration: none; color: blue; } 1.16 +img { border: 0pt none; vertical-align: middle; } 1.17 + 1.18 +/* Header */ 1.19 + 1.20 +#header { 1.21 + height: 40px; 1.22 + background: #222; 1.23 + border-bottom: 4px solid #afafaf; 1.24 +} 1.25 + 1.26 +#header h1 { 1.27 + margin: 0; 1.28 + padding: 8px 0 0 8px; 1.29 + width: 350px; 1.30 + color: white; 1.31 + font-size: 20px; 1.32 + font-style: italic; 1.33 +} 1.34 + 1.35 +/* SliTaz Network */ 1.36 + 1.37 +#network { 1.38 + float: right; 1.39 + padding: 14px 5px 0; 1.40 + font-size: 12px; 1.41 +} 1.42 + 1.43 +#network a { 1.44 + color: #fff; 1.45 + font-weight: bold; 1.46 + text-decoration: none; 1.47 + padding: 0 4px; 1.48 +} 1.49 + 1.50 +#network a:hover { color: #afafaf; } 1.51 + 1.52 +/* Content */ 1.53 + 1.54 +#content { 1.55 + padding: 30px 20px; 1.56 + text-align: justify; 1.57 +} 1.58 + 1.59 +.searchbox { 1.60 + margin: 40px 80px; 1.61 + padding: 12px; 1.62 + background: #f8f8f8; 1.63 + text-align: center; 1.64 + border: 1px solid #ddd; 1.65 + -moz-border-radius: 4px; 1.66 + -webkit-border-radius: 4px; 1.67 + border-radius: 4px; 1.68 +} 1.69 + 1.70 +#social { text-align: center; color: #666; } 1.71 +#social a { color: #666; padding: 0 2px; } 1.72 + 1.73 +/* Form */ 1.74 + 1.75 +input[type=submit] { 1.76 + border: 1px solid #666; 1.77 + background-color: #666; 1.78 + color: white; 1.79 + font-weight: bold; 1.80 + cursor: pointer; 1.81 + padding: 5px 10px; 1.82 + font-size: 14px; 1.83 + margin-left: -5px; 1.84 + -webkit-border-top-right-radius: 4px; 1.85 + -webkit-border-bottom-right-radius: 4px; 1.86 + -moz-border-radius-topright: 4px; 1.87 + -moz-border-radius-bottomright: 4px; 1.88 + border-top-right-radius: 4px; 1.89 + border-bottom-right-radius: 4px; 1.90 +} 1.91 + 1.92 +input[type=submit]:hover { background-color: #444; } 1.93 + 1.94 +input[type=text] { 1.95 + border: 1px solid #333333; 1.96 + padding: 4px; 1.97 + height: 17px; 1.98 + width: 68%; 1.99 + -webkit-border-top-left-radius: 4px; 1.100 + -webkit-border-bottom-left-radius: 4px; 1.101 + -moz-border-radius-topleft: 4px; 1.102 + -moz-border-radius-bottomleft: 4px; 1.103 + border-top-left-radius: 4px; 1.104 + border-bottom-left-radius: 4px; 1.105 +}