You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
764 B
CSS
55 lines
764 B
CSS
10 months ago
|
.quiltnavigation{
|
||
|
position: fixed;
|
||
|
bottom: 80px;
|
||
|
right: 220px;
|
||
|
font-family: monospace;
|
||
|
font-size: 18px;
|
||
|
|
||
|
}
|
||
|
|
||
|
.quiltelement{
|
||
|
width: 100px;
|
||
|
height: 28px;
|
||
|
display: block;
|
||
|
background: #ddd;
|
||
|
color: #333;
|
||
|
position: absolute;
|
||
|
text-align: center;
|
||
|
border: 1px solid black;
|
||
|
box-shadow: 0px 0px 5px #300;
|
||
|
transition: all 0.2s;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.quiltelement:hover{
|
||
|
box-shadow: 0px 0px 10px #900;
|
||
|
background: #777;
|
||
|
color: #ccc;
|
||
|
}
|
||
|
|
||
|
.quiltcenter{
|
||
|
box-shadow: 0px 0px 0px #300;
|
||
|
background: #777;
|
||
|
color: #ccc;
|
||
|
|
||
|
}
|
||
|
.quiltcenter:hover{
|
||
|
box-shadow: 0px 0px 0px #300;
|
||
|
}
|
||
|
|
||
|
.quiltup{
|
||
|
transform: translateY(-32px);
|
||
|
}
|
||
|
|
||
|
.quiltdown{
|
||
|
transform: translateY(32px);
|
||
|
}
|
||
|
|
||
|
.quiltleft{
|
||
|
transform: translateX(-104px);
|
||
|
}
|
||
|
|
||
|
.quiltright{
|
||
|
transform: translateX(104px);
|
||
|
}
|