311 lines
4.5 KiB
SCSS
311 lines
4.5 KiB
SCSS
@import '~meyer-reset-scss';
|
|
@import 'themes.scss';
|
|
|
|
html {
|
|
background-color: var(--background);
|
|
font-size: 62.5%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
-webkit-font-smoothing: antialiased;
|
|
box-sizing: border-box;
|
|
font-family: system-ui, -apple-system, 'Helvetica Neue', Helvetica, Arial,
|
|
sans-serif;
|
|
font-size: 1.4rem;
|
|
height: 100%;
|
|
padding: $unit-2x !important;
|
|
|
|
&.no-scroll {
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
#__next {
|
|
height: 100%;
|
|
}
|
|
|
|
main {
|
|
min-height: 90%;
|
|
}
|
|
|
|
a {
|
|
color: $blue;
|
|
text-decoration: none;
|
|
|
|
&:visited {
|
|
color: $blue;
|
|
}
|
|
|
|
&.wind {
|
|
color: var(--wind-bg);
|
|
}
|
|
|
|
&.fire {
|
|
color: var(--fire-bg);
|
|
}
|
|
|
|
&.water {
|
|
color: var(--water-bg);
|
|
}
|
|
|
|
&.earth {
|
|
color: var(--earth-bg);
|
|
}
|
|
|
|
&.dark {
|
|
color: var(--dark-bg);
|
|
}
|
|
|
|
&.light {
|
|
color: var(--light-bg);
|
|
}
|
|
}
|
|
|
|
button,
|
|
input,
|
|
textarea {
|
|
font-family: system-ui, -apple-system, 'Helvetica Neue', Helvetica, Arial,
|
|
sans-serif;
|
|
font-size: $font-regular;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
p {
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.1rem;
|
|
font-weight: $medium;
|
|
text-align: center;
|
|
}
|
|
|
|
select {
|
|
appearance: none;
|
|
background-color: var(--input-bound-bg);
|
|
background-image: url('/icons/Arrow.svg');
|
|
background-repeat: no-repeat;
|
|
background-position-y: center;
|
|
background-position-x: 97%;
|
|
background-size: $unit * 1.5;
|
|
border: none;
|
|
border-radius: 6px;
|
|
color: $grey-15;
|
|
margin-bottom: $unit;
|
|
font-size: $font-regular;
|
|
padding: 0 ($unit * 2);
|
|
height: $unit * 6;
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
background-color: var(--input-bg-hover);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
#Content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit * 3;
|
|
margin-top: $unit * 3;
|
|
min-width: 752px;
|
|
|
|
@media (max-width: $medium-screen) {
|
|
min-width: auto;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.Overlay {
|
|
background: rgba(0, 0, 0, 0.6);
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 20;
|
|
}
|
|
|
|
.Hovercard {
|
|
background: #222;
|
|
border-radius: $unit;
|
|
color: $grey-100;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit * 2;
|
|
padding: $unit * 2;
|
|
width: 300px;
|
|
|
|
.top {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: calc($unit / 2);
|
|
|
|
.title {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: $unit * 2;
|
|
|
|
h4 {
|
|
flex-grow: 1;
|
|
font-size: $font-medium;
|
|
line-height: 1.2;
|
|
min-width: 140px;
|
|
}
|
|
|
|
img {
|
|
height: auto;
|
|
width: 100px;
|
|
}
|
|
}
|
|
|
|
.subInfo {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: $unit * 2;
|
|
|
|
.icons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-grow: 1;
|
|
gap: $unit;
|
|
}
|
|
|
|
.UncapIndicator {
|
|
width: 100px;
|
|
}
|
|
}
|
|
}
|
|
|
|
section {
|
|
h5 {
|
|
font-size: $font-small;
|
|
font-weight: $medium;
|
|
opacity: 0.7;
|
|
|
|
&.wind {
|
|
color: $wind-bg-20;
|
|
}
|
|
|
|
&.fire {
|
|
color: $fire-bg-20;
|
|
}
|
|
|
|
&.water {
|
|
color: $water-bg-20;
|
|
}
|
|
|
|
&.earth {
|
|
color: $earth-bg-20;
|
|
}
|
|
|
|
&.dark {
|
|
color: $dark-bg-10;
|
|
}
|
|
|
|
&.light {
|
|
color: $light-bg-20;
|
|
}
|
|
}
|
|
}
|
|
|
|
a.Button {
|
|
display: block;
|
|
padding: $unit * 1.5;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
#Teams,
|
|
#Profile {
|
|
display: flex;
|
|
height: 100%;
|
|
flex-direction: column;
|
|
gap: $unit * 2;
|
|
}
|
|
|
|
#NotFound {
|
|
height: 200px;
|
|
width: 400px;
|
|
margin: auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
h2 {
|
|
color: $grey-60;
|
|
font-size: $font-regular;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
img.profile {
|
|
background: $grey-90;
|
|
|
|
&.fire {
|
|
background: $fire-bg-20;
|
|
}
|
|
|
|
&.water {
|
|
background: $water-bg-20;
|
|
}
|
|
|
|
&.wind {
|
|
background: $wind-bg-20;
|
|
}
|
|
|
|
&.earth {
|
|
background: $earth-bg-20;
|
|
}
|
|
|
|
&.dark {
|
|
background: $dark-bg-10;
|
|
}
|
|
|
|
&.light {
|
|
background: $light-bg-20;
|
|
}
|
|
}
|
|
|
|
i.tag {
|
|
background: var(--tag-bg);
|
|
color: var(--tag-text);
|
|
border-radius: calc($unit / 2);
|
|
font-size: 10px;
|
|
font-weight: $bold;
|
|
padding: 4px 6px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.infinite-scroll-component {
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
.SearchFilterBar {
|
|
display: flex;
|
|
gap: $unit;
|
|
padding: 0 ($unit * 3);
|
|
|
|
@media (max-width: $phone) {
|
|
display: grid;
|
|
gap: 8px;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|
|
|
|
@keyframes openModal {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translate(-50%, -48%) scale(0.96);
|
|
}
|
|
|
|
100% {
|
|
// opacity: 1;
|
|
transform: translate(-50%, -50%) scale(1);
|
|
}
|
|
}
|