85 lines
1.2 KiB
CSS
85 lines
1.2 KiB
CSS
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;
|
|
}
|