Files
koodo-reader/src/components/dialogs/backupDialog/backupDialog.css
troyeguo 063b6f92f9 fix bug
Former-commit-id: 4a9c109a0ab402699728fd704270a546edf5e015
2021-04-17 21:43:25 +08:00

191 lines
3.1 KiB
CSS

.backup-page-container {
width: 454px;
height: 278px;
position: absolute;
left: calc(50% - 225px);
top: calc(50% - 150px);
overflow: hidden;
z-index: 20;
opacity: 1;
display: flex;
flex-wrap: wrap;
align-content: flex-start;
border-radius: 5px;
z-index: 10;
animation: popup 0.1s ease-in-out 0s 1;
}
@keyframes popup {
0% {
opacity: 0;
transform: scale(0.95);
}
80% {
opacity: 0.95;
transform: scale(1.005);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes popout {
0% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(0.9);
}
}
.backup-page-title {
width: 100%;
font-size: 18px;
line-height: 60px;
opacity: 1;
text-align: center;
}
.backup-page-drive-container {
width: 100%;
height: calc(100% - 80px);
position: relative;
bottom: 10px;
}
.backup-page-list-item {
float: left;
width: 150px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
opacity: 0.5;
}
.backup-page-list-icon {
font-size: 50px;
position: relative;
left: 45px;
cursor: pointer;
line-height: 50px !important;
}
.backup-page-list-title {
width: 150px !important;
font-size: 15px;
line-height: 30px;
opacity: 1;
width: 100%;
text-align: center;
cursor: pointer;
}
.icon-onedrive {
font-size: 40px;
position: relative;
left: 40px;
}
.icon-googledrive {
font-size: 45px;
}
.icon-webdav {
font-size: 35px;
position: relative;
left: 40px;
}
.backup-page-close-icon {
position: absolute;
right: 10px;
top: 10px;
cursor: pointer;
transition: 0.1s;
width: 38px;
height: 38px;
}
.backup-page-close-icon:hover {
border-radius: 50%;
}
.backup-page-option {
width: 100%;
display: flex;
justify-content: space-evenly;
align-items: center;
position: absolute;
top: 65px;
}
.backup-page-backup {
width: 152px;
height: 152px;
font-size: 18px;
line-height: 40px;
opacity: 1;
text-align: center;
cursor: pointer;
}
.active {
color: white;
cursor: pointer;
}
.icon-backup,
.icon-restore {
display: inline-block;
font-size: 90px;
margin-top: 10px;
}
.backup-page-next {
font-size: 18px;
line-height: 20px;
opacity: 1;
position: absolute;
bottom: 21px;
right: 37px;
cursor: pointer;
}
.backup-page-previous {
font-size: 18px;
line-height: 20px;
opacity: 1;
position: absolute;
bottom: 21px;
right: 108px;
cursor: pointer;
}
.backup-page-backup-selector {
width: 152px;
height: 152px;
opacity: 1;
animation: popup 0.1s ease-in-out 0s 1;
margin-left: 49px;
border-radius: 5px;
}
.icon-local {
opacity: 1;
}
.restore-file {
position: absolute;
left: 0px;
bottom: 100px;
width: 150px;
height: 100px;
z-index: 10;
opacity: 0;
cursor: pointer;
font-size: 0;
/* background-color: pink; */
}
.backup-page-finish-container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.backup-page-finish-icon {
font-size: 60px;
margin: 0px;
}
.backup-page-finish-text {
line-height: 50px;
font-size: 18px;
}