12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #header{
- position: fixed;
- z-index: 999;
- .language-selector{
- display: flex;
- position: fixed;
- width: 100px;
- left: 50%;
- margin-left: -100px;
- li{
- display: flex;
- &:nth-child(-n+2){
- &::after{
- margin: 0 10px;
- display: block;
- position: relative;
- }
- }
- }
- }
- .navigation{
- li{
- position: fixed;
- text-align: center;
- &:first-child{
- display: none;
- }
- &:nth-child(2){
- bottom: 0;
- width: 50%;
- }
- &:nth-child(3){
- top: 0;
- width: 50%;
- }
- &:nth-child(4){
- bottom: 0;
- width: 50%;
- right: 0;
- }
- &:nth-child(5){
- transform: rotate(90deg);
- top: 50%;
- width: 100%;
- right: -50%;
- margin-right: 22px;
- }
- &:nth-child(6){
- transform: rotate(-90deg);
- top: 50%;
- width: 100%;
- left: -50%;
- margin-left: 22px;
- }
- &:nth-child(7){
- top: 0;
- right: 0;
- width: 50%;
- }
- a{
- position: relative;
- margin: auto;
- }
- }
- }
- }
|