244 lines
10 KiB
CSS
244 lines
10 KiB
CSS
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/widgets/homePage/homeNav.vue?vue&type=style&index=0&id=37ce237c&scoped=true&lang=scss ***!
|
|
\**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
.blocks[data-v-37ce237c] {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
gap: 16px;
|
|
margin-bottom: 28px;
|
|
}
|
|
.blocks .bcard[data-v-37ce237c] {
|
|
background: #fff;
|
|
border-radius: 12px;
|
|
padding: 20px;
|
|
border: 1px solid #E0E4EA;
|
|
position: relative;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
|
|
}
|
|
.blocks .bcard__header[data-v-37ce237c] {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.blocks .bcard__header-text[data-v-37ce237c] {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #1A1D23;
|
|
line-height: 1;
|
|
}
|
|
.blocks .bcard__fullness[data-v-37ce237c] {
|
|
font-size: 12px;
|
|
color: #9CA3AF;
|
|
margin-bottom: 14px;
|
|
}
|
|
.blocks .bcard__footer[data-v-37ce237c] {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.blocks .bcard__footer button[data-v-37ce237c] {
|
|
background: transparent;
|
|
color: #6B7280;
|
|
border: 1px solid #E0E4EA;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 12px;
|
|
padding: 6px 12px;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
border-radius: 8px;
|
|
transition: 0.15s;
|
|
font-family: inherit;
|
|
}
|
|
.blocks .bcard__footer button[data-v-37ce237c]:hover {
|
|
background: #F5F7FA;
|
|
}
|
|
.blocks .bcard__footer .badge[data-v-37ce237c] {
|
|
position: absolute;
|
|
top: -10px;
|
|
right: 12px;
|
|
background: #43A047;
|
|
color: #fff;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
padding: 2px 8px;
|
|
border-radius: 4px;
|
|
}
|
|
.blocks .bcard.new[data-v-37ce237c] {
|
|
border: 2px solid #43A047;
|
|
box-shadow: 0 0 0 3px #E8F5E9;
|
|
}
|
|
.blocks .bcard.new button[data-v-37ce237c] {
|
|
background: #43A047;
|
|
color: #fff;
|
|
}
|
|
.blocks .bcard.new button[data-v-37ce237c]:hover {
|
|
background: #2E7D32;
|
|
}
|
|
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/shared/UI/modalLayout.vue?vue&type=style&index=0&id=704a8f1d&scoped=true&lang=scss ***!
|
|
\*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
.modalWindow[data-v-704a8f1d] {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1000;
|
|
width: 100%;
|
|
height: 100vh;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: 0.3s all ease-in-out;
|
|
}
|
|
.modalWindow.open[data-v-704a8f1d] {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transition: 0.3s all ease-in-out;
|
|
}
|
|
.modalWindow__wrapper[data-v-704a8f1d] {
|
|
position: relative;
|
|
width: 760px;
|
|
height: 80vh;
|
|
--tw-bg-opacity: 1;
|
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
padding: 30px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
overflow-y: scroll;
|
|
}
|
|
.modalWindow__title[data-v-704a8f1d] {
|
|
font-size: 28px;
|
|
line-height: 100%;
|
|
}
|
|
.modalWindow__close[data-v-704a8f1d] {
|
|
position: absolute;
|
|
right: 30px;
|
|
top: 30px;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.modalWindow__close svg[data-v-704a8f1d] {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.warning_msg[data-v-704a8f1d] {
|
|
background-color: #f2dede;
|
|
border: 1px solid #ebcccc;
|
|
border-radius: 4px;
|
|
color: #a94442;
|
|
padding: 10px 20px 12px;
|
|
margin-bottom: 30px;
|
|
font-size: 16px;
|
|
font-family: "Lato";
|
|
line-height: 1.5;
|
|
}
|
|
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/pages/HomePage/MainPage.vue?vue&type=style&index=0&id=5a2fc675&scoped=true&lang=scss ***!
|
|
\*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
.mainPage__title[data-v-5a2fc675] {
|
|
font-size: 32px;
|
|
}
|
|
.mainPage__viewChess[data-v-5a2fc675] {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
border-radius: 8px;
|
|
transition: 0.15s;
|
|
font-family: inherit;
|
|
color: #fff;
|
|
background: #43A047;
|
|
font-size: 13px;
|
|
padding: 8px 16px;
|
|
max-height: 33px;
|
|
}
|
|
.mainPage__viewChess[data-v-5a2fc675]:hover {
|
|
background: #2E7D32;
|
|
}
|
|
.mainPage__information[data-v-5a2fc675] {
|
|
max-width: 1390px;
|
|
}
|
|
.mainPage__information .information__head[data-v-5a2fc675] {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.mainPage__information .information__image[data-v-5a2fc675] {
|
|
justify-content: center;
|
|
}
|
|
.mainPage__information .information__title[data-v-5a2fc675] {
|
|
--tw-text-opacity: 1;
|
|
color: rgb(117 117 117 / var(--tw-text-opacity));
|
|
}
|
|
.mainPage__information .information__content[data-v-5a2fc675] {
|
|
display: grid;
|
|
grid-template-columns: 432px 1fr;
|
|
grid-column-gap: 30px;
|
|
}
|
|
.mainPage__information .information__textBlock[data-v-5a2fc675] {
|
|
row-gap: 30px;
|
|
}
|
|
.mainPage__information .information__textBlock .textBlock__item[data-v-5a2fc675] {
|
|
width: 100%;
|
|
height: auto;
|
|
display: grid;
|
|
grid-template-columns: 150px 1fr;
|
|
grid-column-gap: 30px;
|
|
}
|
|
.mainPage__information .information__textBlock .textBlock__item .item__label[data-v-5a2fc675],
|
|
.mainPage__information .information__textBlock .textBlock__item .item__text[data-v-5a2fc675] {
|
|
font-size: 15px;
|
|
}
|
|
.mainPage__information .information__textBlock .textBlock__item .item__text span[data-v-5a2fc675] {
|
|
color: #bdbdbd;
|
|
}
|
|
@media screen and (max-width: 1600px) {
|
|
.mainPage__information .information__textBlock[data-v-5a2fc675] {
|
|
row-gap: 20px;
|
|
}
|
|
}
|
|
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/pages/HomePage/MainPage.vue?vue&type=style&index=1&id=5a2fc675&lang=scss ***!
|
|
\*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
.p-galleria-item-nav-onhover .p-galleria-item-wrapper:hover .p-galleria-item-nav {
|
|
color: #d19090;
|
|
}
|
|
.buttons-holder {
|
|
display: flex;
|
|
gap: 12px;
|
|
margin-bottom: 28px;
|
|
}
|
|
.buttons-holder .download-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
border-radius: 8px;
|
|
transition: 0.15s;
|
|
font-family: inherit;
|
|
background: #f5f7fa !important;
|
|
color: #6B7280 !important;
|
|
border: 1px solid #F0F2F5;
|
|
font-size: 13px;
|
|
padding: 8px 16px !important;
|
|
max-height: 33px;
|
|
}
|
|
.buttons-holder .download-button:hover {
|
|
border-color: unset !important;
|
|
border: 1px solid #F0F2F5 !important;
|
|
background: #f5f7fa !important;
|
|
}
|