-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontentPlaceholder.scss
107 lines (92 loc) · 2.13 KB
/
contentPlaceholder.scss
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
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
}
#root:not(:empty) + .contentPlaceholder_gw2ni {
display: none;
}
.contentPlaceholder_gw2ni {
position: relative;
display: flex;
min-width: var(--size-width-xs);
max-width: var(--size-width-xl);
gap: var(--space-light-md);
padding: var(--space-light-md);
margin: auto;
overflow: hidden;
@include full-page-height;
&::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
background-image: linear-gradient(
-45deg,
transparent 40%,
color-mix(in srgb, var(--color-neutral-weak-max), transparent 50%),
transparent 60%
);
background-size: 300%;
animation: shine_gw2ni 1s infinite;
@keyframes shine_gw2ni {
0% {
background-position-x: 100%;
}
100% {
background-position-x: 0%;
}
}
}
}
.contentPlaceholder_navbar_gw2ni {
display: none;
}
.contentPlaceholder_body_gw2ni {
display: flex;
flex-direction: column-reverse;
flex-grow: 1;
gap: var(--space-light-md);
}
.contentPlaceholder_toolbar_gw2ni {
height: var(--space-heavy-md);
background-color: var(--color-neutral-weak-30);
}
.contentPlaceholder_main_gw2ni {
display: flex;
align-items: center;
justify-content: center;
flex-grow: 1;
background-color: var(--color-neutral-weak-30);
}
.contentPlaceholder_logoContainer_gw2ni {
display: flex;
align-items: center;
justify-content: center;
width: var(--space-heavy-xl);
height: var(--space-heavy-xl);
border-radius: 50%;
background-image: linear-gradient(to bottom, var(--color-neutral-weak-max), var(--color-neutral-weak-30));
box-shadow:
0px 1px 6px var(--color-neutral-weak-10),
inset 0px 2px 3px var(--color-neutral-weak-max);
}
.contentPlaceholder_logo_gw2ni {
width: 50%;
}
@media #{$media-md-above} {
.contentPlaceholder_navbar_gw2ni {
display: flex;
width: min(33%, var(--size-width-xs));
background-color: var(--color-neutral-weak-30);
}
.contentPlaceholder_body_gw2ni {
flex-direction: column;
}
.contentPlaceholder_toolbar_gw2ni {
height: var(--space-heavy-xl);
}
}