94 lines
1.8 KiB
CSS
94 lines
1.8 KiB
CSS
.popupMain {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: auto;
|
|
background: rgba(0,0,0,0.5);
|
|
z-index: 20;
|
|
backdrop-filter: blur(10px);
|
|
align-items: center;
|
|
padding: 25px 10px;
|
|
}
|
|
|
|
.popupMainInside {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
grid-gap: 0px;
|
|
align-items: center;
|
|
}
|
|
|
|
.popupMainInsideWrapper {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.popupMainInsideWrapperBox {
|
|
display: flex;
|
|
flex-direction: column;
|
|
grid-gap: 0px;
|
|
background: #ffffff;
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
box-shadow: 0 0 4px 0 rgb(0,0,0,0.1);
|
|
}
|
|
|
|
.popupMainInsideWrapperBoxTop {
|
|
display: flex;
|
|
flex-direction: row;
|
|
grid-gap: 10px;
|
|
justify-content: space-between;
|
|
padding: 15px 25px;
|
|
border-bottom: solid 1px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.popupMainInsideWrapperBoxMid {
|
|
display: flex;
|
|
flex-direction: column;
|
|
grid-gap: 10px;
|
|
padding: 15px 25px;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.popupMainInsideWrapperBoxBottom {
|
|
display: flex;
|
|
flex-direction: column;
|
|
grid-gap: 10px;
|
|
padding: 15px;
|
|
border-top: solid 1px rgba(0,0,0,0.1);
|
|
color: rgba(0,0,0,0.5);
|
|
text-align: center;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.popupMainInsideWrapperBoxTopText {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.btnMain.popupMainInsideWrapperBoxTopBtn {
|
|
font-size: 18px;
|
|
background: rgba(76,130,163,0);
|
|
color: rgba(0,0,0,0.5);
|
|
}
|
|
|
|
.btnMain.tabsMainBottomPaneLoginBtn {
|
|
width: 100%;
|
|
max-width: 250px;
|
|
align-self: center;
|
|
background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), linear-gradient(#4c82a3, #4c82a3);
|
|
}
|
|
|
|
.btnMain.tabsMainBottomPaneLoginBtn:hover {
|
|
background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)), linear-gradient(#4c82a3, #4c82a3);
|
|
}
|
|
|