add inter-work navigation
This commit is contained in:
parent
23d7810ab6
commit
dbc1fd7c17
11 changed files with 104 additions and 7 deletions
|
@ -9,4 +9,36 @@
|
|||
padding: 10px;
|
||||
font-size: 12px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
nav {
|
||||
position: fixed;
|
||||
z-index: 10;
|
||||
display: flex;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
padding: 3px;
|
||||
|
||||
& a {
|
||||
display: block;
|
||||
color: gold;
|
||||
text-decoration: none;
|
||||
transition: opacity ease-in-out 0.1s;
|
||||
opacity: 0.3;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
& .nav-left {
|
||||
flex: 1;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
& .nav-right {
|
||||
flex: 1;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue