mirror of
https://github.com/penpot/penpot.git
synced 2025-02-02 20:39:09 -05:00
126 lines
1.8 KiB
SCSS
126 lines
1.8 KiB
SCSS
.lightbox {
|
|
align-items: center;
|
|
background-color: $color-dark-bg;
|
|
display: flex;
|
|
justify-content: center;
|
|
position: fixed;
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 1000;
|
|
|
|
.lightbox-body {
|
|
align-items: center;
|
|
background-color: $color-white;
|
|
border-radius: $br-medium;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: $medium $x-big;
|
|
position: relative;
|
|
width: 500px;
|
|
@include animation(.1s,1s,fadeInDown);
|
|
|
|
.input-text {
|
|
margin: 1rem 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.project-size {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
|
|
.input-text {
|
|
width: 35%;
|
|
}
|
|
|
|
.toggle-layout {
|
|
|
|
svg {
|
|
fill: $color-gray;
|
|
height: 20px;
|
|
width: 20px;
|
|
|
|
&:hover {
|
|
fill: $color-gray-darker;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.close {
|
|
position: absolute;
|
|
right: -30px;
|
|
transform: rotate(45deg);
|
|
top: -30px;
|
|
|
|
svg {
|
|
fill: $color-white;
|
|
height: 20px;
|
|
width: 20px;
|
|
|
|
&:hover {
|
|
fill: $color-danger;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.lightbox-big-btn {
|
|
align-items: center;
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 1rem;
|
|
|
|
.big-svg {
|
|
background-color: $color-gray-lighter;
|
|
border-radius: $br-medium;
|
|
padding: 3rem;
|
|
|
|
svg {
|
|
fill: $color-gray;
|
|
height: 40px;
|
|
width: 40px;
|
|
}
|
|
|
|
&.upload {
|
|
|
|
svg {
|
|
transform: rotate(-90deg);
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.text {
|
|
color: $color-gray-light;
|
|
margin-top: .5rem;
|
|
}
|
|
|
|
&:hover {
|
|
|
|
.big-svg {
|
|
background-color: $color-primary;
|
|
|
|
svg {
|
|
fill: $color-white;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|