Files
iQR/style.css
T
2025-06-18 20:23:03 +03:00

91 lines
1.3 KiB
CSS

::selection {
background-color: orangered;
color: white;
}
html {
background-color: #1e1e1e;
cursor: url(Orange_cursor.png) , default !important
}
body {
font-family: Arial, sans-serif;
margin: 20px;
text-align: center;
}
.logo {
display: flex;
justify-content: center;
gap: 15px;
}
h1 {
margin: 0;
color: orangered;
}
img {
cursor: url(Orange_pointer.png), pointer !important;
}
a {
cursor: url(Orange_cursor.png), pointer !important;
}
.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;
cursor: url(Orange_pointer.png), pointer !important;
}
button {
background-color: orangered;
color: #fff;
cursor: pointer;
cursor: url(Orange_pointer.png), pointer !important;
}
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;
}