secajs/src/public/css/seca.css

223 lines
3.1 KiB
CSS
Raw Normal View History

2025-02-19 01:19:36 +01:00
* {
2025-02-25 00:52:25 +01:00
font-family: Arial, Helvetica, sans-serif;
2025-02-19 15:07:27 +01:00
box-sizing: border-box;
2025-02-19 01:19:36 +01:00
}
2025-02-24 16:04:22 +01:00
@media (max-width: 768px) {
html {
font-size: 16px;
}
.font-medium {
font-size: 0.7rem;
}
.button-medium {
height: 3em;
2025-02-27 16:54:05 +01:00
padding: 0.5em 1em;
2025-02-24 16:04:22 +01:00
border-radius: 10px;
}
2025-02-27 16:54:05 +01:00
.top-notification-good {
top: 25px;
}
2025-02-24 16:04:22 +01:00
}
@media (min-width: 769px) {
html {
2025-02-24 23:47:01 +01:00
font-size: 16px;
2025-02-24 16:04:22 +01:00
}
.font-medium {
font-size: 0.9rem;
}
.button-medium {
height: 3em;
padding: 1em;
2025-02-24 16:46:26 +01:00
border-radius: 10px;
2025-02-24 16:04:22 +01:00
}
2025-02-27 16:54:05 +01:00
.top-notification-good {
top: 50px;
}
}
2025-02-28 12:36:04 +01:00
body {
background-color: #bdd5ea;
}
h1 {
color: #e1c300;
}
.clickable {
cursor: pointer;
}
.money-input {
text-align: end;
}
.input-is-valid {
border: 1px solid green;
}
.input-is-invalid {
border: 2px solid red;
}
2025-02-27 18:26:36 +01:00
.max-size-zero {
max-width: 0;
max-height: 0;
}
2025-02-27 16:54:05 +01:00
.top-notification-good {
border-radius: 10px;
background-color: rgb(9, 165, 9);
color: white;
font-weight: 800;
opacity: 0.8;
position: fixed;
padding: 20px;
display: flex;
justify-content: space-evenly;
align-items: center;
left: 50%;
2025-02-27 18:38:42 +01:00
transform: translate(-50%, -500px);
2025-02-27 18:40:15 +01:00
transition: transform 2s ease-in-out;
2025-02-27 17:36:22 +01:00
}
.top-notification-good.revealed {
transform: translate(-50%, 0%);
2025-02-27 16:54:05 +01:00
}
.top-notification-good > * {
margin: 0 20px;
}
.top-notification-good > *:first-child {
margin-left: 0;
}
.top-notification-good > *:last-child {
margin-right: 0;
2025-02-24 16:04:22 +01:00
}
2025-02-27 16:54:05 +01:00
.top-notification-good img {
height: 50px;
}
2025-02-23 23:41:13 +01:00
2025-02-22 02:18:23 +01:00
.button-group button {
border: 0;
padding: 1em;
cursor: pointer;
}
.button-group button.selected {
border: 0;
padding: 1em;
background: #e1c300;
}
.button-group button.unselected {
border: 0;
padding: 1em;
background: #e1c300;
font-weight: bold;
color: white;
}
.button-group button:first-of-type {
border-top-left-radius: 1em;
border-bottom-left-radius: 1em;
margin-right: 0;
}
.button-group button:last-of-type {
border-top-right-radius: 1em;
border-bottom-right-radius: 1em;
margin-left: 0;
}
2025-02-20 14:53:09 +01:00
.over-background {
2025-02-19 01:19:36 +01:00
background-color: white;
2025-02-20 14:53:09 +01:00
border-radius: 1vw;
2025-02-19 01:19:36 +01:00
padding: 2vw;
2025-02-20 14:53:09 +01:00
margin: 1%;
}
2025-02-27 19:00:36 +01:00
.shadowed-round-area {
border-radius: 20px;
box-shadow: 0 0 13px #ccc;
2025-02-28 12:36:04 +01:00
padding: 20px;
2025-02-27 19:00:36 +01:00
}
2025-02-21 16:41:22 +01:00
#login-card > * {
text-align: center;
margin-right: auto;
margin-left: auto;
display: block;
margin-bottom: 1vh;
}
2025-02-20 14:53:09 +01:00
2025-02-20 16:33:46 +01:00
.text-warning {
color: red;
font-weight: 800;
}
2025-02-20 14:53:09 +01:00
.button-primary {
background: #e1c300;
border: 0;
color: white;
cursor: pointer;
}
.button-primary:hover {
background-color: #dfca41;
}
.button-primary:disabled {
background-color: #d8d8d8;
cursor: default;
}
.button-large {
font-weight: bold;
font-size: 1.5em;
2025-02-24 23:58:58 +01:00
padding: 0.5em;
2025-02-20 14:53:09 +01:00
}
.card-secondary {
2025-02-19 01:19:36 +01:00
background-color: #369;
border-radius: 1vw;
padding: 1vw;
color: white;
}
2025-02-21 16:41:22 +01:00
.card-secondary a {
2025-02-19 01:19:36 +01:00
color: white;
}
2025-02-20 14:53:09 +01:00
.card-secondarya:hover {
2025-02-19 14:11:44 +01:00
color: #e1c300;
}
2025-02-21 16:41:22 +01:00
.button-nostr {
2025-02-19 14:11:44 +01:00
background: #a915ff;
border-radius: 1vw;
color: white;
padding: 1%;
2025-02-19 14:46:03 +01:00
cursor: pointer;
2025-02-27 19:00:36 +01:00
border: 0;
2025-02-19 14:11:44 +01:00
}
2025-02-21 16:41:22 +01:00
.button-nostr:hover {
2025-02-19 14:46:03 +01:00
background-color: #b941ff;
}
2025-02-21 16:41:22 +01:00
.button-nostr:disabled {
2025-02-19 14:46:03 +01:00
background-color: #d8d8d8;
cursor: default;
2025-02-21 16:41:22 +01:00
border: 0;
}