remove the banner
[wolnelektury.git] / src / wolnelektury / static / scss / main / skiplinks.scss
1 #skiplinks {
2     position: absolute;
3     left: 0;
4     top: 0;
5     margin: 0;
6     padding: 0;
7     list-style: none;
8     z-index: 100;
9
10     li {
11         a {
12             position: absolute;
13             left: -100em;
14             top: 0;
15             background: white;
16             white-space: nowrap;
17             padding: .5em 1em;
18             
19             &:focus {
20                 left: 0;
21             }
22         }
23     }
24 }