feature/return-to-starting-point-button #26
@ -153,21 +153,26 @@
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
#navigation .navigationItem {
|
||||
margin-top: 10px;
|
||||
opacity: 70%;
|
||||
}
|
||||
|
||||
|
||||
#navigation .navigationItem:hover {
|
||||
opacity: 100%;
|
||||
}
|
||||
|
||||
#navigation span {
|
||||
bence
commented
For semantical reasons I would use
For semantical reasons I would use `div` instead of `span` because `span` is intended to be an inline element, however this a block element here.
```css
#navigation .navigationItem div {
```
balazs
commented
I don't know why, but it breaks the visualization. I didn't see any difference in the CSS tree, when I tried it. I don't know why, but it breaks the visualization. I didn't see any difference in the CSS tree, when I tried it.
balazs
commented
I've realized I've left out the .navigationItem and that's why not the right div was selected. (I see now, that you wrote it correctly in your suggestion) I've realized I've left out the .navigationItem and that's why not the right div was selected. (I see now, that you wrote it correctly in your suggestion)
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
#navigation .circleBackground {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 50%;
|
||||
}
|
||||
|
||||
#navigation .navigationIcon {
|
||||
width: 75%;
|
||||
height: 75%;
|
||||
|
Loading…
Reference in New Issue
Block a user
Then it will feel like a link.