java/nekurak.net-web/web/styl.css
changeset 154 bf21a4abea9b
parent 149 8238cdb4113a
child 158 e1ac3efcd140
     1.1 --- a/java/nekurak.net-web/web/styl.css	Wed Jun 30 00:26:14 2010 +0200
     1.2 +++ b/java/nekurak.net-web/web/styl.css	Sat Jan 08 20:18:27 2011 +0100
     1.3 @@ -283,3 +283,71 @@
     1.4      margin-top: 8px;
     1.5      margin-bottom: 8px;
     1.6  }
     1.7 +
     1.8 +ul.stitky {
     1.9 +	margin: 0;
    1.10 +	padding: 0 0 32px 0;
    1.11 +
    1.12 +	list-style: none;
    1.13 +}
    1.14 +
    1.15 +ul.stitky li, ul.stitky a {
    1.16 +	float: left;
    1.17 +	height: 20px;
    1.18 +	line-height: 20px;
    1.19 +	position: relative;
    1.20 +	font-size: 11px;
    1.21 +}
    1.22 +
    1.23 +ul.stitky a {
    1.24 +	margin-left: 20px;
    1.25 +	padding: 0 10px 0 12px;
    1.26 +	background: silver;
    1.27 +	color: #666;
    1.28 +	text-decoration: none;
    1.29 +	-moz-border-radius-bottomright: 4px;
    1.30 +	-webkit-border-bottom-right-radius: 4px;
    1.31 +	border-bottom-right-radius: 4px;
    1.32 +	-moz-border-radius-topright: 4px;
    1.33 +	-webkit-border-top-right-radius: 4px;
    1.34 +	border-top-right-radius: 4px;
    1.35 +}
    1.36 +
    1.37 +ul.stitky a:before {
    1.38 +	content: "";
    1.39 +	float: left;
    1.40 +	position: absolute;
    1.41 +	top: 0;
    1.42 +	left: -10px;
    1.43 +	width: 0;
    1.44 +	height: 0;
    1.45 +	border-color: transparent silver transparent transparent;
    1.46 +	border-style: solid;
    1.47 +	border-width: 10px 10px 10px 0;
    1.48 +}
    1.49 +
    1.50 +ul.stitky a:after {
    1.51 +	content: "";
    1.52 +	position: absolute;
    1.53 +	top: 9px;
    1.54 +	left: 0;
    1.55 +	float: left;
    1.56 +	width: 4px;
    1.57 +	height: 4px;
    1.58 +	-moz-border-radius: 2px;
    1.59 +	-webkit-border-radius: 2px;
    1.60 +	border-radius: 2px;
    1.61 +	background: #fff;
    1.62 +	-moz-box-shadow: -1px -1px 2px grey;
    1.63 +	-webkit-box-shadow: -1px -1px 2px grey;
    1.64 +	box-shadow: -1px -1px 2px #004977;
    1.65 +}
    1.66 +
    1.67 +ul.stitky a:hover{
    1.68 +	background: #555;
    1.69 +	color: #ccc;
    1.70 +}
    1.71 +
    1.72 +ul.stitky a:hover:before{
    1.73 +	border-color:transparent #555 transparent transparent;
    1.74 +}
    1.75 \ No newline at end of file