File size: 863 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | .decorate{
h1{
position: absolute;
width: 100%;
text-align: center;
font-weight: normal;
top: -12px;
left: 0;
margin: 0;
padding: 0;
font-size: 30px;
}
.topBorder{
position:absolute;
height:10px;
width:100%;
position:absolute;
top:0px;
left:0px;
overflow:hidden;
span{
display:block;
width:10px;
height:10px;
overflow:hidden;
background:#000;
&.mr{
margin-right:10px;
}
&.ml{
margin-left:10px;
}
}
}
.view{
position: absolute;
right: -70px;
top: 20px;
width: 44px;
em {
display: block;
width: 22px;
height: 22px;
overflow: hidden;
float: left;
}
p {
height: 22px;
clear: both;
}
&.l{
right: auto;
left: -70px;
}
}
} |