Implement ios prototype version
This commit is contained in:
parent
a80d007e0c
commit
e3601055fc
24 changed files with 1368 additions and 1 deletions
84
ios/send-ios/assets/index.css
Normal file
84
ios/send-ios/assets/index.css
Normal file
|
@ -0,0 +1,84 @@
|
|||
body {
|
||||
background: url('background_1.jpg');
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex: auto;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 0 20px;
|
||||
box-sizing: border-box;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
#striped {
|
||||
background-image: repeating-linear-gradient(
|
||||
45deg,
|
||||
white,
|
||||
white 5px,
|
||||
#ea000e 5px,
|
||||
#ea000e 25px,
|
||||
white 25px,
|
||||
white 30px,
|
||||
#0083ff 30px,
|
||||
#0083ff 50px
|
||||
);
|
||||
height: 350px;
|
||||
width: 480px;
|
||||
}
|
||||
|
||||
#white {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
background-color: white;
|
||||
margin: 0 10px;
|
||||
padding: 1px 10px 0 10px;
|
||||
}
|
||||
|
||||
#label {
|
||||
background: #0297f8;
|
||||
border: 1px solid #0297f8;
|
||||
color: white;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
height: 60px;
|
||||
width: 200px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#input {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#url {
|
||||
flex: 1;
|
||||
width: 100%;
|
||||
height: 32px;
|
||||
font-size: 24px;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.button {
|
||||
flex: 1;
|
||||
display: block;
|
||||
background: #0297f8;
|
||||
border: 1px solid #0297f8;
|
||||
color: white;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
width: 95%;
|
||||
height: 32px;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
#send-another {
|
||||
margin-bottom: 1em;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue