File size: 2,013 Bytes
b285804 5fdf0b6 b285804 5fdf0b6 b285804 5fdf0b6 b285804 5fdf0b6 b285804 5fdf0b6 b285804 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
.wrapper {
display: flex;
flex-direction: column;
height:100%;
width:100%;
justify-content: center;
align-items: center;
font-family: Arial, Helvetica, sans-serif;
}
.tools {
background-color: #f78fb3;
width: 10rem;
padding: 2rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
}
.tools .title {
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 1rem;
}
.tools .type-input-trio {
display: flex;
flex-direction: row;
margin: 1em;
}
.tools .type-input-trio-label {
margin-right: .75em;
}
.tools .type-input {
width: 100%;
height: 2em;
font-size: larger;
background-color: unset;
color: inherit;
}
.tools .button {
width: 100%;
height: 5em;
font-size: larger;
background-color: #f78fb3;
color: #fff;
border: unset;
border-radius: 1em;
box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
cursor: pointer;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.book-info {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 20rem;
height: 15rem;
display: flex;
flex-direction: column;
border: unset;
background-color: #8cbceb;
padding: 1em;
border-radius: 1em;
margin: 1rem;
box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
cursor: pointer;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.book-info .book-name {
font-size: 1.5rem;
font-weight: bold;
color: #fff;
margin-bottom: 1em;
}
.book-info .book-text {
color: #fff;
}
.preview {
width: 100%;
height: 20rem;
background-color: #8cbceb;
} |