mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Bud Parr
18.45.2017 d68e01a86901aa5bae222f30e2d64c48b23cde0f
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
 
    BACKGROUND POSITION
 
    Base:
    bg = background
 
    Modifiers:
    -center = center center
    -top = top center
    -right = center right
    -bottom = bottom center
    -left = center left
 
    Media Query Extensions:
      -ns = not-small
      -m  = medium
      -l  = large
 
 */
 
.bg-center { 
  background-repeat: no-repeat;
  background-position: center center; 
}
 
.bg-top {    
  background-repeat: no-repeat; 
  background-position: top center;    
}
 
.bg-right {  
  background-repeat: no-repeat; 
  background-position: center right;  
}
 
.bg-bottom { 
  background-repeat: no-repeat; 
  background-position: bottom center; 
}
 
.bg-left {   
  background-repeat: no-repeat; 
  background-position: center left;   
}
 
@media (--breakpoint-not-small) {
  .bg-center-ns { 
    background-repeat: no-repeat;
    background-position: center center; 
  }
 
  .bg-top-ns {    
    background-repeat: no-repeat; 
    background-position: top center;    
  }
 
  .bg-right-ns {  
    background-repeat: no-repeat; 
    background-position: center right;  
  }
 
  .bg-bottom-ns { 
    background-repeat: no-repeat; 
    background-position: bottom center; 
  }
 
  .bg-left-ns {   
    background-repeat: no-repeat; 
    background-position: center left;   
  }
}
 
@media (--breakpoint-medium) {
  .bg-center-m { 
    background-repeat: no-repeat;
    background-position: center center; 
  }
 
  .bg-top-m {    
    background-repeat: no-repeat; 
    background-position: top center;    
  }
 
  .bg-right-m {  
    background-repeat: no-repeat; 
    background-position: center right;  
  }
 
  .bg-bottom-m { 
    background-repeat: no-repeat; 
    background-position: bottom center; 
  }
 
  .bg-left-m {   
    background-repeat: no-repeat; 
    background-position: center left;   
  }
}
 
@media (--breakpoint-large) {
  .bg-center-l { 
    background-repeat: no-repeat;
    background-position: center center; 
  }
 
  .bg-top-l {    
    background-repeat: no-repeat; 
    background-position: top center;    
  }
 
  .bg-right-l {  
    background-repeat: no-repeat; 
    background-position: center right;  
  }
 
  .bg-bottom-l { 
    background-repeat: no-repeat; 
    background-position: bottom center; 
  }
 
  .bg-left-l {   
    background-repeat: no-repeat; 
    background-position: center left;   
  }
}