92 lines
2.6 KiB
SCSS
92 lines
2.6 KiB
SCSS
.setting-site {
|
|
width: 100%;
|
|
border-bottom: 1px solid #000;
|
|
position: relative;
|
|
.block {
|
|
width: 100%;
|
|
display: flex;
|
|
margin: 0 auto;
|
|
column-gap: 40px;
|
|
max-width: 1240px;
|
|
padding: 20px 40px;
|
|
align-items: flex-end;
|
|
justify-content: center;
|
|
|
|
.font, .color, .images, .bright, .contrast, .default {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 8px;
|
|
flex-wrap: wrap;
|
|
|
|
.title {
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
line-height: 24px;
|
|
}
|
|
.controls {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
column-gap: 12px;
|
|
div {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 4px;
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border: 1px solid var(--second);
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
&.icon {
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
&.minus {background-image: url("~projects/app-root/src/assets/images/icons/minus_grey_20dp.svg");}
|
|
&.plus {background-image: url("~projects/app-root/src/assets/images/icons/plus_grey_20dp.svg");}
|
|
&.image {background-image: url("~projects/app-root/src/assets/images/icons/image_grey_20dp.svg");}
|
|
&.ban {background-image: url("~projects/app-root/src/assets/images/icons/ban_20dp.svg");}
|
|
&.sun {background-image: url("~projects/app-root/src/assets/images/icons/sun_22dp.svg");}
|
|
&.circle-half-stroke {background-image: url("~projects/app-root/src/assets/images/icons/circle_half_stroke_21dp.svg");}
|
|
|
|
&.style-color {
|
|
color: #28a814;
|
|
|
|
}
|
|
&.style-brown {
|
|
background-color: #f7f0d2;
|
|
}
|
|
&.style-black-white {
|
|
color: var(--black);
|
|
background-color: var(--white);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.default {
|
|
background-color: var(--second);
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 4px;
|
|
background-image: url("~projects/app-root/src/assets/images/icons/return_19dp.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.exit {
|
|
position: absolute;
|
|
width: 24px;
|
|
height: 24px;
|
|
right: 20px;
|
|
cursor: pointer;
|
|
top: 20px;
|
|
background: url("~projects/app-root/src/assets/images/icons/close_20dp.svg") no-repeat center;
|
|
}
|
|
}
|