Дозаливка
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
/* MODAL STYLES */
|
||||
#trainingModalMain {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#trainingModalBackground {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: rgb(0, 0, 0, 0.5);
|
||||
|
||||
z-index: 1100;
|
||||
}
|
||||
|
||||
#trainingModalContainerHihgtlightes {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
z-index: 1200;
|
||||
}
|
||||
|
||||
#trainingModalContainer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
background: #e2e0e1;
|
||||
padding: 30px;
|
||||
border: 2px solid black;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
#trainingModalContentContainer {
|
||||
width: 600px;
|
||||
height: 300px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
#trainingModalTitle {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
#trainingModalCurrentStep {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#trainingModalTextContainer {
|
||||
display: flex;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
#trainingModalText {
|
||||
white-space: pre-line;
|
||||
}
|
||||
|
||||
#trainingModalButton {
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
/* ANOTHER STYLES */
|
||||
.highlightedTrainingElement {
|
||||
z-index: 1150;
|
||||
opacity: 0.83;
|
||||
}
|
||||
|
||||
.highlightedTrainingElementZIndex {
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.highlightedTrainingElementPosition {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.highlightedTrainingElementBackground {
|
||||
background: #e2e0e1;
|
||||
}
|
||||
|
||||
.pseudoElement {
|
||||
background: red;
|
||||
}
|
||||
Reference in New Issue
Block a user