80 lines
1.0 KiB
CSS
80 lines
1.0 KiB
CSS
::selection {
|
|
background-color: orangered;
|
|
color: white;
|
|
}
|
|
|
|
html {
|
|
background-color: #1e1e1e;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
color: orangered;
|
|
}
|
|
|
|
.inputs {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
textarea,
|
|
button {
|
|
padding: 10px;
|
|
margin: 10px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
textarea {
|
|
color: orangered;
|
|
border: 1px solid #000;
|
|
}
|
|
|
|
textarea::selection {
|
|
background-color: orangered;
|
|
color: white;
|
|
}
|
|
|
|
input[type='checkbox'] {
|
|
accent-color: orangered;
|
|
}
|
|
|
|
button {
|
|
background-color: orangered;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button::selection {
|
|
background-color: rgb(172, 46, 0);
|
|
}
|
|
|
|
button:active {
|
|
background-color: rgb(135, 36, 0);
|
|
}
|
|
|
|
#qr-code {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#qr-code img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
canvas {
|
|
border: 1px solid #000;
|
|
} |