mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
06.22.2022 9df825df06bf47bdbb53b67f15601c60f636b898
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
.header {
  width: $content-width;
  position: fixed;
  right: 0;
  z-index: 3;
  background-color: $accent;
}
 
@media screen and (min-width: 961px), print {
  .header {
    border-bottom: $border;
  }
}
@media screen and (max-width: 960px) {
  .header {
    width: 100%;
  }
}
 
@media (min-width: 1921px) {
  .header {
    position: fixed;
    width: $content-width;
  }
}
 
@media print {
  .header {
    display: none;
  }
}