16 lines
362 B
CSS
16 lines
362 B
CSS
body {
|
|
margin: 0;
|
|
}
|
|
.label {
|
|
position: absolute;
|
|
width: 126px;
|
|
height: 14px;
|
|
border: 1px solid rgba(255, 255, 255, 0.75);
|
|
border-radius: 4px;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
font-family: Lucida Grande; sans-serif;
|
|
font-size: 11px;
|
|
text-align: center;
|
|
color: rgb(255, 255, 255);
|
|
box-shadow: 0 0 1px rgb(0, 0, 0);
|
|
}
|