* Refactor
+ Menu to create or read a password + New loader
This commit is contained in:
40
src/css/choose.css
Normal file
40
src/css/choose.css
Normal file
@@ -0,0 +1,40 @@
|
||||
.options {
|
||||
display: grid;
|
||||
grid-template-columns: .5fr 300px 300px .5fr;
|
||||
grid-template-rows: .7fr;
|
||||
column-gap: 50px;
|
||||
position: absolute;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
height: 80%;
|
||||
}
|
||||
|
||||
.options div {
|
||||
transition: .2s ease-in-out;
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
grid-row: 2;
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
padding-top: 90px;
|
||||
border: 1px rgba(255, 255, 255, 0.3) solid;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.options div:hover {
|
||||
background-color: rgba(255, 255, 255, .2);
|
||||
border: 1px rgba(255, 255, 255, 0.8) solid;
|
||||
}
|
||||
|
||||
.options div i {
|
||||
font-size: 64pt;
|
||||
}
|
||||
|
||||
#create {
|
||||
grid-row: 1;
|
||||
grid-column: 2;
|
||||
float: right;
|
||||
}
|
||||
#scan {
|
||||
grid-row: 1;
|
||||
grid-column: 3;
|
||||
}
|
||||
Reference in New Issue
Block a user