codecheck

Форк
0
231 строка · 5.9 Кб
1
/// Padding of a carousel indicators container
2
/// @group media
3
$carouselIndicatorsPadding: 1rem;
4

5
/// Padding of a carousel indicator
6
/// @group media
7
$carouselIndicatorBg: #e9ecef;
8

9
/// Padding of a carousel indicator in hover state
10
/// @group media
11
$carouselIndicatorHoverBg: #dee2e6;
12

13
/// Border radius of a carousel indicator
14
/// @group media
15
$carouselIndicatorBorderRadius: 0;
16

17
/// Width of a carousel indicator
18
/// @group media
19
$carouselIndicatorWidth: 2rem;
20

21
/// Height of a carousel indicator
22
/// @group media
23
$carouselIndicatorHeight: .5rem;
24

25
/// Background of a galleria modal
26
/// @group media
27
$galleriaMaskBg: rgba(0,0,0,0.9);
28

29
/// Margin of a galleria close icon
30
/// @group media
31
$galleriaCloseIconMargin: .5rem;
32

33
/// Font size of a galleria close icon
34
/// @group media
35
$galleriaCloseIconFontSize: 2rem;
36

37
/// Background of a galleria close icon
38
/// @group media
39
$galleriaCloseIconBg: transparent;
40

41
/// Color of a galleria close icon
42
/// @group media
43
$galleriaCloseIconColor: #ebedef;
44

45
/// Background of a galleria close icon in hover state
46
/// @group media
47
$galleriaCloseIconHoverBg: rgba(255,255,255,0.1);
48

49
/// Color of a galleria close icon in hover state
50
/// @group media
51
$galleriaCloseIconHoverColor: #ebedef;
52

53
/// Width of a galleria close icon
54
/// @group media
55
$galleriaCloseIconWidth: 4rem;
56

57
/// Height of a galleria close icon
58
/// @group media
59
$galleriaCloseIconHeight: 4rem;
60

61
/// Border radius of a galleria close icon
62
/// @group media
63
$galleriaCloseIconBorderRadius: 50%;
64

65
/// Background of a galleria navigator item
66
/// @group media
67
$galleriaItemNavigatorBg: rgba(0,0,0,.2);
68

69
/// Color of a galleria navigator item
70
/// @group media
71
$galleriaItemNavigatorColor: #aeb6bf;
72

73
/// Margin of a galleria navigator item
74
/// @group media
75
$galleriaItemNavigatorMargin: .5rem 0;
76

77
/// Font size of a galleria navigator item
78
/// @group media
79
$galleriaItemNavigatorFontSize: 2rem;
80

81
/// Background of a galleria navigator item in hover state
82
/// @group media
83
$galleriaItemNavigatorHoverBg: rgba(0,0,0,.3);
84

85
/// Color of a galleria navigator item in hover state
86
/// @group media
87
$galleriaItemNavigatorHoverColor: #ebedef;
88

89
/// Width of a galleria navigator item
90
/// @group media
91
$galleriaItemNavigatorWidth: 4rem;
92

93
/// Height of a galleria navigator item
94
/// @group media
95
$galleriaItemNavigatorHeight: 4rem;
96

97
/// Border radius of a galleria navigator item
98
/// @group media
99
$galleriaItemNavigatorBorderRadius: $borderRadius;
100

101
/// Background of a galleria caption
102
/// @group media
103
$galleriaCaptionBg: rgba(0,0,0,.5);
104

105
/// Color of a galleria caption
106
/// @group media
107
$galleriaCaptionTextColor: #ebedef;
108

109
/// Padding of a galleria caption
110
/// @group media
111
$galleriaCaptionPadding: 1rem;
112

113
/// Padding of a galleria indicators container
114
/// @group media
115
$galleriaIndicatorsPadding: 1rem;
116

117
/// Background of a galleria indicator
118
/// @group media
119
$galleriaIndicatorBg: #e9ecef;
120

121
/// Background of a galleria indicator in hover state
122
/// @group media
123
$galleriaIndicatorHoverBg: #dee2e6;
124

125
/// Border radius of a galleria indicator
126
/// @group media
127
$galleriaIndicatorBorderRadius: 50%;
128

129
/// Width of a galleria indicator
130
/// @group media
131
$galleriaIndicatorWidth: 1rem;
132

133
/// Height of a galleria indicator
134
/// @group media
135
$galleriaIndicatorHeight: 1rem;
136

137
/// Background of a galleria indicator container when placed inside the viewport
138
/// @group media
139
$galleriaIndicatorsBgOnItem: rgba(0,0,0,.5);
140

141
/// Background of a galleria indicator when placed inside the viewport
142
/// @group media
143
$galleriaIndicatorBgOnItem: rgba(255,255,255,.4);
144

145
/// Background of a galleria indicator in hover state when placed inside the viewport
146
/// @group media
147
$galleriaIndicatorHoverBgOnItem: rgba(255,255,255,.6);
148

149
/// Background of a galleria thumbnail container
150
/// @group media
151
$galleriaThumbnailContainerBg: rgba(0,0,0,.9);
152

153
/// Padding of a galleria thumbnail container
154
/// @group media
155
$galleriaThumbnailContainerPadding: 1rem .25rem;
156

157
/// Background of a galleria thumbnail navigator
158
/// @group media
159
$galleriaThumbnailNavigatorBg: transparent;
160

161
/// Color of a galleria thumbnail navigator
162
/// @group media
163
$galleriaThumbnailNavigatorColor: #aeb6bf;
164

165
/// Background of a galleria thumbnail navigator in hover state
166
/// @group media
167
$galleriaThumbnailNavigatorHoverBg: rgba(255,255,255,0.1);
168

169
/// Color of a galleria thumbnail navigator in hover state
170
/// @group media
171
$galleriaThumbnailNavigatorHoverColor: #aeb6bf;
172

173
/// Border radius of a galleria thumbnail navigator in hover state
174
/// @group media
175
$galleriaThumbnailNavigatorBorderRadius: 50%;
176

177
/// Width of a galleria thumbnail navigator in hover state
178
/// @group media
179
$galleriaThumbnailNavigatorWidth: 2rem;
180

181
/// Height of a galleria thumbnail navigator in hover state
182
/// @group media
183
$galleriaThumbnailNavigatorHeight: 2rem;
184

185
/// Background of an image preview modal
186
/// @group media
187
$imageMaskBg:rgba(0,0,0,0.9) !default;
188

189
/// Padding of image preview toolbar
190
/// @group media
191
$imagePreviewToolbarPadding:1rem !default;
192

193
/// Text color of the image preview indicator
194
/// @group media
195
$imagePreviewIndicatorColor:#f8f9fa !default;
196

197
/// Background of the image preview indicator
198
/// @group media
199
$imagePreviewIndicatorBg:rgba(0,0,0,0.5) !default;
200

201
/// Background of an image action item
202
/// @group media
203
$imagePreviewActionIconBg:transparent !default;
204

205
/// Text color of an image action item
206
/// @group media
207
$imagePreviewActionIconColor:#f8f9fa !default;
208

209
/// Background of an image action item in hover state
210
/// @group media
211
$imagePreviewActionIconHoverBg:rgba(255,255,255,0.1) !default;
212

213
/// Tect color of an image action item in hover state
214
/// @group media
215
$imagePreviewActionIconHoverColor:#f8f9fa !default;
216

217
/// Width of an image action item
218
/// @group media
219
$imagePreviewActionIconWidth:3rem !default;
220

221
/// Height of an image action item
222
/// @group media
223
$imagePreviewActionIconHeight:3rem !default;
224

225
/// Font size of an image action item icon
226
/// @group media
227
$imagePreviewActionIconFontSize:1.5rem !default;
228

229
/// Border radius of an image action item
230
/// @group media
231
$imagePreviewActionIconBorderRadius:50% !default;
232

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.