Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
A
argumentnn.r52
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Evgeny Talagaev
argumentnn.r52
Commits
e81b148d
Commit
e81b148d
authored
Aug 25, 2022
by
Evgeny Talagaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changes
parent
1879bcf6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
141 additions
and
58 deletions
+141
-58
page-footer.scss
src/blocks/page-footer/page-footer.scss
+9
-6
page-header.scss
src/blocks/page-header/page-header.scss
+1
-1
page.scss
src/blocks/page/page.scss
+106
-45
pagination.scss
src/blocks/pagination/pagination.scss
+6
-4
tabs.scss
src/blocks/tabs/tabs.scss
+19
-2
No files found.
src/blocks/page-footer/page-footer.scss
View file @
e81b148d
...
@@ -55,12 +55,12 @@
...
@@ -55,12 +55,12 @@
&
__f-s-first
{
&
__f-s-first
{
.simple-menu
{
.simple-menu
{
@media
(
min-width
:
$screen-
xl
)
{
@media
(
min-width
:
$screen-
md
)
{
justify-content
:
space-between
;
justify-content
:
space-between
;
column-gap
:
15px
;
column-gap
:
15px
;
}
}
@media
(
max-width
:
(
$screen-
xl
-
1
))
{
@media
(
max-width
:
(
$screen-
md
-
1
))
{
flex-direction
:
column
;
flex-direction
:
column
;
align-items
:
center
;
align-items
:
center
;
gap
:
2px
;
gap
:
2px
;
...
@@ -92,7 +92,7 @@
...
@@ -92,7 +92,7 @@
}
}
@media
(
max-width
:
(
$screen-xl
-
1
))
{
@media
(
max-width
:
(
$screen-xl
-
1
))
{
gap
:
5px
;
gap
:
5px
20px
;
justify-content
:
center
;
justify-content
:
center
;
}
}
}
}
...
@@ -123,11 +123,14 @@
...
@@ -123,11 +123,14 @@
color
:
#fff
;
color
:
#fff
;
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
justify-content
:
space-between
;
font-size
:
14px
;
font-size
:
14px
;
}
}
@media
(
max-width
:
(
$screen-xl
-
1
))
{
@media
(
min-width
:
$screen-md
)
{
justify-content
:
space-between
;
}
@media
(
max-width
:
(
$screen-md
-
1
))
{
flex-direction
:
column
;
flex-direction
:
column
;
align-items
:
center
;
align-items
:
center
;
}
}
...
@@ -137,7 +140,7 @@
...
@@ -137,7 +140,7 @@
column-gap
:
33px
;
column-gap
:
33px
;
}
}
@media
(
max-width
:
(
$screen-
xl
-
1
))
{
@media
(
max-width
:
(
$screen-
md
-
1
))
{
margin-top
:
5px
;
margin-top
:
5px
;
flex-direction
:
column
;
flex-direction
:
column
;
align-items
:
center
;
align-items
:
center
;
...
...
src/blocks/page-header/page-header.scss
View file @
e81b148d
...
@@ -131,7 +131,7 @@
...
@@ -131,7 +131,7 @@
position
:
fixed
;
position
:
fixed
;
left
:
0
;
left
:
0
;
top
:
0
;
top
:
0
;
z-index
:
13
;
z-index
:
200
;
width
:
100%
;
width
:
100%
;
height
:
100vh
;
height
:
100vh
;
overflow-y
:
auto
;
overflow-y
:
auto
;
...
...
src/blocks/page/page.scss
View file @
e81b148d
...
@@ -110,6 +110,10 @@
...
@@ -110,6 +110,10 @@
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
--container-width
:
calc
(
1080px
+
15px
*
2
);
--container-width
:
calc
(
1080px
+
15px
*
2
);
}
}
@media
(
min-width
:
$screen-md
)
{
--container-width
:
calc
(
738px
+
15px
*
2
);
}
}
}
.container
{
.container
{
...
@@ -636,14 +640,15 @@ pre {
...
@@ -636,14 +640,15 @@ pre {
top
:
50%
;
top
:
50%
;
transform
:
translateY
(
-50%
);
transform
:
translateY
(
-50%
);
padding
:
0
;
padding
:
0
;
width
:
42px
;
border
:
1px
solid
transparent
;
width
:
40px
;
height
:
calc
(
100%
-
10px
);
height
:
calc
(
100%
-
10px
);
border
:
none
;
background-color
:
var
(
--
m-color-1
);
background-color
:
var
(
--
m-color-1
);
font-size
:
0
;
font-size
:
0
;
line-height
:
0
;
line-height
:
0
;
cursor
:
pointer
;
cursor
:
pointer
;
border-radius
:
$border-radius
;
border-radius
:
$border-radius
;
transition
:
background-color
$transition-time
,
border-color
$transition-time
;
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
width
:
51px
;
width
:
51px
;
...
@@ -651,7 +656,13 @@ pre {
...
@@ -651,7 +656,13 @@ pre {
&
:focus
,
&
:focus
,
&
:hover
{
&
:hover
{
background-color
:
#fff
;
border-color
:
var
(
--
m-color-1
);
svg
{
svg
{
path
{
stroke
:
var
(
--
m-color-1
);
}
}
}
}
}
...
@@ -662,6 +673,10 @@ pre {
...
@@ -662,6 +673,10 @@ pre {
width
:
auto
;
width
:
auto
;
height
:
20px
;
height
:
20px
;
}
}
path
{
transition
:
stroke
$transition-time
;
}
}
}
}
}
}
}
...
@@ -742,6 +757,10 @@ pre {
...
@@ -742,6 +757,10 @@ pre {
margin-top
:
60px
;
margin-top
:
60px
;
margin-bottom
:
60px
;
margin-bottom
:
60px
;
padding-bottom
:
190px
;
padding-bottom
:
190px
;
}
@media
(
min-width
:
$screen-md
)
{
padding-bottom
:
118px
;
background
:
url(../img/top-banner.jpg)
center
bottom
/
1920px
auto
no-repeat
;
background
:
url(../img/top-banner.jpg)
center
bottom
/
1920px
auto
no-repeat
;
}
}
...
@@ -799,9 +818,14 @@ pre {
...
@@ -799,9 +818,14 @@ pre {
}
}
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
max-width
:
inherit
;
font-size
:
15px
;
font-size
:
15px
;
}
}
@media
(
min-width
:
$screen-md
)
{
max-width
:
260px
;
}
p
{
p
{
margin-bottom
:
0
;
margin-bottom
:
0
;
}
}
...
@@ -864,11 +888,11 @@ pre {
...
@@ -864,11 +888,11 @@ pre {
}
}
&
__second
{
&
__second
{
:first-child
{
>
:first-child
{
margin-top
:
0
;
margin-top
:
0
;
}
}
:last-child
{
>
:last-child
{
margin-bottom
:
0
;
margin-bottom
:
0
;
}
}
}
}
...
@@ -903,8 +927,9 @@ pre {
...
@@ -903,8 +927,9 @@ pre {
}
}
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
padding
:
5px
10px
10
px
10px
;
padding
:
0
10px
8
px
10px
;
border-radius
:
10px
;
border-radius
:
10px
;
line-height
:
46px
;
}
}
}
}
...
@@ -918,6 +943,14 @@ pre {
...
@@ -918,6 +943,14 @@ pre {
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
font-size
:
27px
;
font-size
:
27px
;
}
}
span
{
padding-bottom
:
2px
;
@media
(
min-width
:
$screen-xl
)
{
padding-bottom
:
3px
;
}
}
}
}
}
}
...
@@ -928,7 +961,6 @@ pre {
...
@@ -928,7 +961,6 @@ pre {
display
:
flex
;
display
:
flex
;
flex-wrap
:
wrap
;
flex-wrap
:
wrap
;
gap
:
20px
;
&
__link
{
&
__link
{
display
:
flex
;
display
:
flex
;
...
@@ -943,14 +975,23 @@ pre {
...
@@ -943,14 +975,23 @@ pre {
color
:
var
(
--
m-color-2
);
color
:
var
(
--
m-color-2
);
text-decoration
:
none
;
text-decoration
:
none
;
@media
(
min-width
:
$screen-xxl
)
{
}
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
padding
:
37px
30px
;
padding
:
37px
30px
;
}
@media
(
min-width
:
$screen-md
)
{
width
:
calc
(
100%
/
2
-
(
20px
*
1
/
2
));
width
:
calc
(
100%
/
2
-
(
20px
*
1
/
2
));
}
}
&
+
&
{
margin-top
:
20px
;
@media
(
min-width
:
$screen-md
)
{
margin-top
:
0
;
margin-left
:
20px
;
}
}
.btn
{
.btn
{
}
}
...
@@ -1004,7 +1045,7 @@ pre {
...
@@ -1004,7 +1045,7 @@ pre {
padding
:
42px
60px
;
padding
:
42px
60px
;
}
}
@media
(
min-width
:
$screen-
xl
)
{
@media
(
min-width
:
$screen-
md
)
{
padding
:
40px
;
padding
:
40px
;
background-image
:
url(../img/a-bg-1.svg)
;
background-image
:
url(../img/a-bg-1.svg)
;
}
}
...
@@ -1034,10 +1075,13 @@ pre {
...
@@ -1034,10 +1075,13 @@ pre {
}
}
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
max-width
:
488px
;
font-size
:
15px
;
font-size
:
15px
;
}
}
@media
(
min-width
:
$screen-md
)
{
max-width
:
488px
;
}
p
{
p
{
margin-bottom
:
0
;
margin-bottom
:
0
;
}
}
...
@@ -1066,7 +1110,7 @@ pre {
...
@@ -1066,7 +1110,7 @@ pre {
display
:
flex
;
display
:
flex
;
flex-wrap
:
wrap
;
flex-wrap
:
wrap
;
gap
:
20px
;
margin
:
-10px
-10px
0
;
&
__item
{
&
__item
{
display
:
flex
;
display
:
flex
;
...
@@ -1081,13 +1125,20 @@ pre {
...
@@ -1081,13 +1125,20 @@ pre {
color
:
var
(
--
m-color-4
);
color
:
var
(
--
m-color-4
);
line-height
:
120%
;
line-height
:
120%
;
font-family
:
$font-family
;
font-family
:
$font-family
;
margin
:
10px
;
transition
:
box-shadow
$transition-time
;
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
width
:
calc
(
100%
/
4
-
(
20px
*
3
/
4
));
width
:
calc
(
100%
/
4
-
(
28px
*
3
/
4
));
}
@media
(
min-width
:
$screen-md
)
{
width
:
calc
(
100%
/
2
-
(
42px
*
1
/
2
));
}
}
&
:focus
,
&
:focus
,
&
:hover
{
&
:hover
{
box-shadow
:
0
0
4px
rgba
(
2
,
48
,
122
,
0
.1
);
color
:
var
(
--
m-color-4
);
color
:
var
(
--
m-color-4
);
#{
$block-name
}
__i-title
{
#{
$block-name
}
__i-title
{
...
@@ -1263,6 +1314,10 @@ pre {
...
@@ -1263,6 +1314,10 @@ pre {
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
width
:
calc
(
100%
/
4
-
(
20px
*
3
/
4
));
width
:
calc
(
100%
/
4
-
(
20px
*
3
/
4
));
}
}
@media
(
min-width
:
$screen-md
)
{
width
:
calc
(
100%
/
3
-
(
20px
*
2
/
3
));
}
}
}
&
__i-title
{
&
__i-title
{
...
@@ -1323,7 +1378,7 @@ pre {
...
@@ -1323,7 +1378,7 @@ pre {
#{
$block-name
}
__item
{
#{
$block-name
}
__item
{
width
:
100%
!
important
;
width
:
100%
!
important
;
@media
(
min-width
:
$screen-
xl
)
{
@media
(
min-width
:
$screen-
md
)
{
width
:
calc
(
100%
/
3
-
(
25px
*
2
/
3
))
!
important
;
width
:
calc
(
100%
/
3
-
(
25px
*
2
/
3
))
!
important
;
}
}
}
}
...
@@ -1445,19 +1500,20 @@ pre {
...
@@ -1445,19 +1500,20 @@ pre {
background-color
:
var
(
--
m-color-1
);
background-color
:
var
(
--
m-color-1
);
color
:
#fff
;
color
:
#fff
;
@media
(
min-width
:
$screen-xxl
)
{
@media
(
min-width
:
$screen-xl
)
{
padding
:
30px
40px
;
}
}
@media
(
min-width
:
$screen-
xl
)
{
@media
(
min-width
:
$screen-
md
)
{
display
:
flex
;
display
:
flex
;
align-items
:
center
;
align-items
:
center
;
padding
:
30px
40px
;
padding
:
30px
;
}
}
&
__ico
{
&
__ico
{
line-height
:
0
;
line-height
:
0
;
@media
(
max-width
:
(
$screen-
xl
-
1
))
{
@media
(
max-width
:
(
$screen-
md
-
1
))
{
text-align
:
center
;
text-align
:
center
;
}
}
...
@@ -1465,10 +1521,7 @@ pre {
...
@@ -1465,10 +1521,7 @@ pre {
width
:
auto
;
width
:
auto
;
height
:
40px
;
height
:
40px
;
@media
(
min-width
:
$screen-xxl
)
{
@media
(
min-width
:
$screen-md
)
{
}
@media
(
min-width
:
$screen-xl
)
{
height
:
60px
;
height
:
60px
;
}
}
}
}
...
@@ -1483,10 +1536,14 @@ pre {
...
@@ -1483,10 +1536,14 @@ pre {
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
padding-left
:
40px
;
padding-left
:
40px
;
}
@media
(
min-width
:
$screen-md
)
{
padding-left
:
30px
;
font-size
:
15px
;
font-size
:
15px
;
}
}
@media
(
max-width
:
(
$screen-
xl
-
1
))
{
@media
(
max-width
:
(
$screen-
md
-
1
))
{
margin-top
:
20px
;
margin-top
:
20px
;
}
}
...
@@ -1789,18 +1846,6 @@ pre {
...
@@ -1789,18 +1846,6 @@ pre {
&
__right
{
&
__right
{
margin-left
:
12px
;
margin-left
:
12px
;
}
}
&
__name
{
}
&
__name
{
}
&
__name
{
}
&
__name
{
}
}
}
/* ----- .v-menu ----- */
/* ----- .v-menu ----- */
...
@@ -1832,7 +1877,8 @@ pre {
...
@@ -1832,7 +1877,8 @@ pre {
>
.v-menu__l-item.active
>
.v-menu__l-item.active
>
.v-menu__l-item-block
>
.v-menu__l-item-block
.v-menu__l-item-link
{
.v-menu__l-item-link
{
font-weight
:
700
;
text-shadow
:
0
0
1px
#02307a
;
// font-weight: 700;
}
}
.v-menu__list--level-3
>
.v-menu__l-item.active
>
.v-menu__l-item-link
,
.v-menu__list--level-3
>
.v-menu__l-item.active
>
.v-menu__l-item-link
,
...
@@ -1855,11 +1901,12 @@ pre {
...
@@ -1855,11 +1901,12 @@ pre {
display
:
block
;
display
:
block
;
text-decoration
:
none
;
text-decoration
:
none
;
color
:
#1f1f28
;
color
:
#1f1f28
;
transition
:
color
0
.35s
;
transition
:
color
0
.35s
,
text-shadow
0
.35s
;
}
}
.v-menu__l-item-link
:hover
,
.v-menu__l-item-link
:hover
,
.v-menu__l-item-link
:focus
{
.v-menu__l-item-link
:focus
{
text-shadow
:
0
0
1px
#02307a
;
color
:
#02307a
;
color
:
#02307a
;
}
}
...
@@ -2014,6 +2061,10 @@ pre {
...
@@ -2014,6 +2061,10 @@ pre {
background-color
:
transparent
;
background-color
:
transparent
;
color
:
var
(
--
m-color-4
);
color
:
var
(
--
m-color-4
);
font-size
:
14px
;
font-size
:
14px
;
@media
(
max-width
:
(
$screen-lg
-
1
))
{
font-size
:
16px
;
}
}
}
.
v-menu--type-1
.
v-menu--type-1
...
@@ -2031,15 +2082,10 @@ pre {
...
@@ -2031,15 +2082,10 @@ pre {
.v-menu--type-1
.v-menu__l-item-link
{
.v-menu--type-1
.v-menu__l-item-link
{
font-size
:
13px
;
font-size
:
13px
;
}
.v-menu--type-1
.v-menu__list--level-2
>
.v-menu__l-item
>
.v-menu__l-item-link
,
@media
(
max-width
:
(
$screen-lg
-
1
))
{
.v-menu--type-1
font-size
:
15px
;
.v-menu__list--level-2
}
>
.v-menu__l-item
>
.v-menu__l-item-block
.v-menu__l-item-link
{
font-weight
:
600
;
}
}
.v-menu--type-1
.v-menu__list--level-4
>
.v-menu__l-item
>
.v-menu__l-item-link
,
.v-menu--type-1
.v-menu__list--level-4
>
.v-menu__l-item
>
.v-menu__l-item-link
,
...
@@ -2049,6 +2095,10 @@ pre {
...
@@ -2049,6 +2095,10 @@ pre {
>
.v-menu__l-item-block
>
.v-menu__l-item-block
.v-menu__l-item-link
{
.v-menu__l-item-link
{
font-size
:
12px
;
font-size
:
12px
;
@media
(
max-width
:
(
$screen-lg
-
1
))
{
font-size
:
13px
;
}
}
}
.v-menu--type-1
.v-menu__list--level-2
.v-menu__l-item
+
.v-menu__l-item
{
.v-menu--type-1
.v-menu__list--level-2
.v-menu__l-item
+
.v-menu__l-item
{
...
@@ -2057,6 +2107,10 @@ pre {
...
@@ -2057,6 +2107,10 @@ pre {
.v-menu--type-1
.v-menu__list--level-3
.v-menu__l-item
+
.v-menu__l-item
{
.v-menu--type-1
.v-menu__list--level-3
.v-menu__l-item
+
.v-menu__l-item
{
margin-top
:
6px
;
margin-top
:
6px
;
@media
(
max-width
:
(
$screen-lg
-
1
))
{
margin-top
:
8px
;
}
}
}
.v-menu--type-1
.v-menu__l-item-menu-wrapper
>
.v-menu__list
{
.v-menu--type-1
.v-menu__l-item-menu-wrapper
>
.v-menu__list
{
...
@@ -2122,3 +2176,10 @@ pre {
...
@@ -2122,3 +2176,10 @@ pre {
.v-menu--type-1
.v-menu__list--level-1
>
.v-menu__l-item
+
.v-menu__l-item
{
.v-menu--type-1
.v-menu__list--level-1
>
.v-menu__l-item
+
.v-menu__l-item
{
margin-top
:
20px
;
margin-top
:
20px
;
}
}
.breadcrumb
{
@media
(
max-width
:
(
$screen-md
-
1
))
{
margin-top
:
0
!
important
;
opacity
:
0
;
}
}
src/blocks/pagination/pagination.scss
View file @
e81b148d
...
@@ -20,15 +20,17 @@
...
@@ -20,15 +20,17 @@
color
:
$text-color
;
color
:
$text-color
;
font-size
:
14px
;
font-size
:
14px
;
@media
(
min-width
:
$screen-xxl
)
{
}
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
padding
:
10px
18px
;
padding
:
10px
18px
;
min-width
:
45px
;
font-size
:
16px
;
font-size
:
16px
;
}
}
@media
(
min-width
:
$screen-md
)
{
padding
:
10px
;
min-width
:
45px
;
font-size
:
14px
;
}
&
:hover
,
&
:hover
,
&
:focus
{
&
:focus
{
text-decoration
:
none
;
text-decoration
:
none
;
...
...
src/blocks/tabs/tabs.scss
View file @
e81b148d
...
@@ -10,7 +10,6 @@
...
@@ -10,7 +10,6 @@
flex-wrap
:
wrap
;
flex-wrap
:
wrap
;
justify-content
:
center
;
justify-content
:
center
;
align-items
:
center
;
align-items
:
center
;
gap
:
5px
;
margin
:
0
0
27px
;
margin
:
0
0
27px
;
padding
:
0
;
padding
:
0
;
list-style
:
none
;
list-style
:
none
;
...
@@ -20,7 +19,6 @@
...
@@ -20,7 +19,6 @@
}
}
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
gap
:
10px
15px
;
margin-bottom
:
30px
;
margin-bottom
:
30px
;
}
}
...
@@ -32,6 +30,21 @@
...
@@ -32,6 +30,21 @@
&
__link-wrap
{
&
__link-wrap
{
position
:
relative
;
position
:
relative
;
&
:hover
{
#{
$block-name
}
__link
{
background-color
:
var
(
--
m-color-1
);
color
:
#fff
;
}
}
&
+
&
{
margin-left
:
5px
;
@media
(
min-width
:
$screen-xl
)
{
margin-left
:
15px
;
}
}
&
--active
{
&
--active
{
#{
$block-name
}
__link
{
#{
$block-name
}
__link
{
background-color
:
var
(
--
m-color-1
);
background-color
:
var
(
--
m-color-1
);
...
@@ -63,6 +76,10 @@
...
@@ -63,6 +76,10 @@
@media
(
min-width
:
$screen-xl
)
{
@media
(
min-width
:
$screen-xl
)
{
padding
:
20px
25px
;
padding
:
20px
25px
;
}
@media
(
min-width
:
$screen-md
)
{
padding
:
15px
20px
;
font-size
:
14px
;
font-size
:
14px
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment