2020-03-06 20:34:31 +00:00
/*
2021-02-15 20:48:26 +00:00
This file is part of LibreQR.
2020-03-06 20:34:31 +00:00
2021-02-15 20:48:26 +00:00
LibreQR is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
2020-03-06 20:34:31 +00:00
2021-02-15 20:48:26 +00:00
LibreQR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
2020-03-06 20:34:31 +00:00
2021-02-15 20:48:26 +00:00
You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
2020-03-06 20:34:31 +00:00
*/
2021-03-07 22:03:33 +00:00
@light: ~"(prefers-color-scheme: light)";
@dark: ~"(prefers-color-scheme: dark)";
2020-03-06 20:34:31 +00:00
2019-08-13 19:17:08 +00:00
* {
2021-02-15 20:48:26 +00:00
font-family: system-ui, sans-serif;
2021-03-07 22:03:33 +00:00
2020-03-06 20:34:31 +00:00
scrollbar-width: auto;
2021-03-07 22:03:33 +00:00
@media @light {
scrollbar-color: @text-light @bg-light;
}
@media @dark {
scrollbar-color: @text-dark @bg-dark;
}
2019-01-26 13:23:19 +00:00
}
2020-03-06 20:34:31 +00:00
a {
text-decoration: underline;
2019-02-11 18:26:31 +00:00
2021-03-07 22:03:33 +00:00
@media @light {
color: @text-light;
}
@media @dark {
color: @text-dark;
}
2020-03-06 20:34:31 +00:00
&:hover {
text-decoration: none;
}
2019-02-11 18:26:31 +00:00
}
2020-07-01 18:47:02 +00:00
p {
2020-10-25 17:02:57 +00:00
margin: 10px;
2020-07-01 18:47:02 +00:00
}
2021-03-07 18:06:32 +00:00
details .helpText {
padding: 5px;
border-radius: 10px;
text-align: left;
2021-03-07 22:03:33 +00:00
@media @light {
background-color: @bgHelp-light;
}
@media @dark {
background-color: @bgHelp-dark;
}
2019-02-11 18:26:31 +00:00
}
2021-05-03 13:18:50 +00:00
#sideParams summary {
2019-02-11 18:26:31 +00:00
text-align: center;
2020-03-06 20:34:31 +00:00
margin-left: 20px;
2019-02-11 18:26:31 +00:00
}
2021-03-07 18:06:32 +00:00
#firstWrapper {
display: flex;
flex-direction: row;
}
2020-03-06 20:34:31 +00:00
#qrCode {
max-width: 480px;
2019-02-11 18:26:31 +00:00
}
2019-01-26 13:23:19 +00:00
2020-07-01 18:47:02 +00:00
.centered {
2020-03-06 20:34:31 +00:00
text-align: center;
2019-01-26 13:23:19 +00:00
}
2020-10-25 17:02:57 +00:00
.button {
2019-01-26 13:23:19 +00:00
padding: 3px 10px 3px 10px;
2020-03-06 20:34:31 +00:00
text-decoration: none;
2019-01-26 13:23:19 +00:00
}
form {
2020-10-12 16:55:36 +00:00
flex-grow: 1;
2020-03-06 20:34:31 +00:00
margin-bottom: 30px;
2019-01-26 13:23:19 +00:00
}
2020-07-01 18:47:02 +00:00
main {
2020-03-06 20:34:31 +00:00
display: flex;
flex-direction: column;
2019-02-11 18:26:31 +00:00
margin-left: auto;
margin-right: auto;
2020-03-06 20:34:31 +00:00
width: 814px;
2020-10-12 16:55:36 +00:00
height: 99%;
2020-03-06 20:34:31 +00:00
}
body {
margin: 18px;
2019-01-26 13:23:19 +00:00
font-weight: normal;
2020-03-06 20:34:31 +00:00
font-size: 20px;
2020-10-12 16:55:36 +00:00
height: 99%;
2021-03-07 22:03:33 +00:00
@media @light {
color: @text-light;
background-color: @bg-light;
}
@media @dark {
color: @text-dark;
background-color: @bg-dark;
}
2019-01-26 13:23:19 +00:00
}
2020-10-12 16:55:36 +00:00
html {
height: 97%;
2019-01-26 14:17:36 +00:00
}
2019-02-24 18:11:31 +00:00
header {
text-align: center;
2019-01-26 14:17:36 +00:00
padding: 0px;
margin: 0px;
2020-03-06 20:34:31 +00:00
height: 64px;
2019-02-24 18:11:31 +00:00
}
2020-03-06 20:34:31 +00:00
#logo {
width: 64px;
height: 64px;
}
2020-10-25 17:02:57 +00:00
#titles {
2020-03-06 20:34:31 +00:00
margin-left: 20px;
}
h1, h2, h3, h4, h5, h6 {
margin: 0px;
font-weight: normal;
}
h1 {
font-size: 33px;
}
h2 {
font-size: 22px;
}
2020-10-25 17:02:57 +00:00
#linkTitles {
2020-03-06 20:34:31 +00:00
text-align: left;
justify-content: center;
text-decoration: none;
2019-02-24 18:11:31 +00:00
display: flex;
2019-08-13 19:17:08 +00:00
flex-direction: row;
2019-02-24 18:11:31 +00:00
}
2020-03-06 20:34:31 +00:00
#showOnlyQR {
margin-top: 30px;
2019-01-26 13:23:19 +00:00
}
.param {
padding: 10px;
2019-01-26 14:17:36 +00:00
padding-left: 0px;
margin-left: 0px;
padding-right: 0px;
margin-right: 0px;
2019-01-26 13:23:19 +00:00
}
2020-10-25 17:02:57 +00:00
.inputColorContainer {
2019-08-13 19:17:08 +00:00
display: flex;
flex-direction: row;
justify-content: center;
}
::selection {
2021-03-07 22:03:33 +00:00
@media @light {
color: @bg-light;
background-color: @text-light;
}
@media @dark {
color: @bg-dark;
background-color: @text-dark;
}
2019-08-13 19:17:08 +00:00
}
2020-03-06 20:34:31 +00:00
label[for=txt] {
padding-left: 22px;
2019-08-13 19:17:08 +00:00
}
2020-03-06 20:34:31 +00:00
#colors {
2019-08-13 19:17:08 +00:00
display: flex;
flex-direction: row;
justify-content: space-between;
text-align: center;
2020-03-06 20:34:31 +00:00
& .param {
text-align: center;
display: flex;
justify-content: center;
flex-direction: column;
width: 100%;
}
2019-08-13 19:17:08 +00:00
}
2020-03-06 20:34:31 +00:00
.metaText {
2020-10-25 17:02:57 +00:00
padding: 6px;
2021-03-07 22:03:33 +00:00
@media @light {
color: @text-light;
}
@media @dark {
color: @text-dark;
}
2019-08-13 19:17:08 +00:00
2020-10-25 17:02:57 +00:00
& a, a:visited {
2021-03-07 18:06:32 +00:00
text-decoration: underline;
2021-03-07 22:03:33 +00:00
@media @light {
color: @text-light;
}
@media @dark {
color: @text-dark;
}
2019-08-13 19:17:08 +00:00
}
2021-03-07 22:03:33 +00:00
2019-08-13 19:17:08 +00:00
}
2020-03-06 20:34:31 +00:00
footer {
font-size: 14px;
2020-10-12 16:55:36 +00:00
padding-top: 20px;
2020-10-25 17:02:57 +00:00
text-align: left;
}
2020-10-12 16:55:36 +00:00
2020-10-25 17:02:57 +00:00
header, footer {
flex-shrink: 0;
2020-03-06 20:34:31 +00:00
}
#info {
font-size: 16px;
bottom: 20px;
right: 20px;
margin: 0px;
& h3 {
font-size: 20px;
font-weight: normal;
padding-bottom: 10px;
}
}
2019-08-13 19:17:08 +00:00
/* Inputs */
2020-10-25 17:02:57 +00:00
#redondancy, #margin, #txt, #size, input[type=color], input[type=submit], .button {
2021-03-07 22:03:33 +00:00
border-width: 2px;
border-style: solid;
2019-08-13 19:17:08 +00:00
border-radius: 10px;
font-size: 20px;
padding-left: 10px;
font-weight: normal;
2021-05-03 13:25:25 +00:00
transition: color 0.1s linear;
2019-08-13 19:17:08 +00:00
margin-top: 8px;
2021-03-07 22:03:33 +00:00
@media @light {
color: @text-light;
background-color: @bgField-light;
border-color: @border-light;
}
@media @dark {
color: @text-dark;
background-color: @bgField-dark;
border-color: @border-dark;
}
2019-08-13 19:17:08 +00:00
&:hover {
2021-03-07 22:03:33 +00:00
border-width: 2px;
border-style: solid;
2021-04-26 22:24:20 +00:00
2021-03-07 22:03:33 +00:00
@media @light {
2021-04-26 22:24:20 +00:00
border-color: @borderHover-light;
2021-03-07 22:03:33 +00:00
}
@media @dark {
2021-04-26 22:24:20 +00:00
border-color: @borderHover-dark;
2021-03-07 22:03:33 +00:00
}
2019-08-13 19:17:08 +00:00
}
&:focus {
2021-03-07 22:03:33 +00:00
border-width: 2px;
border-style: solid;
2020-03-06 20:34:31 +00:00
outline: none;
2021-03-07 22:03:33 +00:00
@media @light {
2021-04-26 22:24:20 +00:00
border-color: @borderFocus-light;
2021-03-07 22:03:33 +00:00
}
@media @dark {
2021-04-26 22:24:20 +00:00
border-color: @borderFocus-dark;
2021-03-07 22:03:33 +00:00
}
2019-08-13 19:17:08 +00:00
}
}
2020-03-06 20:34:31 +00:00
#redondancy, #size, #margin {
2019-08-13 19:17:08 +00:00
width: 250px;
height: 40px;
2021-03-07 22:03:33 +00:00
@media @light {
background-color: @bgField-light;
}
@media @dark {
background-color: @bgField-dark;
}
2019-08-13 19:17:08 +00:00
}
2020-03-06 20:34:31 +00:00
#txt {
padding: 10px;
margin: 10px;
2019-08-13 19:17:08 +00:00
width: 500px;
2020-03-06 20:34:31 +00:00
scrollbar-width: auto;
2021-03-07 22:03:33 +00:00
@media @light {
2021-04-26 22:24:20 +00:00
background-color: @bgTextarea-light;
color: @textareaText-light;
scrollbar-color: @textareaText-light @bgTextarea-light;
2021-03-07 22:03:33 +00:00
}
@media @dark {
2021-04-26 22:24:20 +00:00
background-color: @bgTextarea-dark;
color: @textareaText-dark;
scrollbar-color: @textareaText-dark @bgTextarea-dark;
2021-03-07 22:03:33 +00:00
}
2019-08-13 19:17:08 +00:00
}
2020-03-06 20:34:31 +00:00
input[type=submit] {
font-size: 28px;
padding: 10px;
padding-left: 14px;
padding-right: 14px;
2019-08-13 19:17:08 +00:00
}
2020-03-06 20:34:31 +00:00
#txt::placeholder {
2019-03-17 15:03:43 +00:00
opacity: 1;
2021-02-15 20:48:26 +00:00
font-family: system-ui, sans-serif;
2019-03-28 21:44:06 +00:00
font-weight: normal;
font-size: 1em;
2021-03-07 22:03:33 +00:00
@media @light {
2021-04-26 22:24:20 +00:00
color: @textareaPlaceholder-light;
2021-03-07 22:03:33 +00:00
}
@media @dark {
2021-04-26 22:24:20 +00:00
color: @textareaPlaceholder-dark;
2021-03-07 22:03:33 +00:00
}
2019-02-13 18:27:34 +00:00
}
2019-08-13 19:17:08 +00:00
input[type=color] {
2020-03-06 20:34:31 +00:00
height: 60px;
width: 84px;
2019-08-13 19:17:08 +00:00
padding: 5px;
2021-03-07 22:03:33 +00:00
border-width: 2px;
border-style: solid;
@media @light {
border-color: @border-light;
}
@media @dark {
border-color: @border-dark;
}
2019-08-13 19:17:08 +00:00
}
2020-03-06 20:34:31 +00:00
/* Media queries */
@media (max-width: 850px) {
2020-07-01 18:47:02 +00:00
main {
2020-03-06 20:34:31 +00:00
width: auto;
}
#firstWrapper {
flex-direction: column;
}
body {
margin: 10px;
}
#txt {
width: 92%;
}
}
2020-10-12 16:55:36 +00:00
@media (max-width: 500px) { // Mobile version
2020-03-06 20:34:31 +00:00
#colors {
flex-direction: column;
}
h1 {
font-size: 28px;
padding-top: 6px;
}
#txt {
width: 85%;
}
#qrCode {
max-width: 94%;
}
}
@media (max-width: 415px) {
h1 {
padding: 0px;
}
2019-01-26 13:23:19 +00:00
}