72 lines
1.1 KiB
CSS
72 lines
1.1 KiB
CSS
|
#tips_window {
|
||
|
position: fixed;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background-color: rgba(0, 0, 0, 0.308);
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
z-index: 2001;
|
||
|
}
|
||
|
.window {
|
||
|
background-color: white;
|
||
|
width: 100%;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
.tips_header {
|
||
|
display: flex;
|
||
|
padding: 0px 20px;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
.description {
|
||
|
padding: 20px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
.actions {
|
||
|
border-top: 1px solid #0000001a;
|
||
|
text-align: right;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
.carousel {
|
||
|
overflow: hidden;
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
max-width: 900px;
|
||
|
height: 400px;
|
||
|
}
|
||
|
.carousel .prev_step {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
transform: translateY(-50%);
|
||
|
border: 0px;
|
||
|
background: none;
|
||
|
font-size: 50px;
|
||
|
color: white;
|
||
|
cursor: pointer;
|
||
|
left: 0;
|
||
|
}
|
||
|
.carousel .next_step {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
transform: translateY(-50%);
|
||
|
right: 0;
|
||
|
z-index: 1;
|
||
|
border: 0px;
|
||
|
background: none;
|
||
|
font-size: 50px;
|
||
|
color: white;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.carousel .images {
|
||
|
display: inline-block;
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
font-size: 0px;
|
||
|
}
|
||
|
.carousel .images img {
|
||
|
width: 100%;
|
||
|
}
|
||
|
.title {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|