secajs/src/public/css/seca.css

174 lines
2.4 KiB
CSS
Raw Normal View History

2025-02-19 01:19:36 +01:00
* {
font-family: 'Courier New', Courier, monospace;
2025-02-19 15:07:27 +01:00
box-sizing: border-box;
2025-02-19 01:19:36 +01:00
}
2025-02-20 14:53:09 +01:00
.badges {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
}
2025-02-13 17:25:23 +01:00
.badge {
2025-02-20 14:53:09 +01:00
border: 2px solid #e1c300;
2025-02-14 11:13:18 +01:00
border-radius: 10px;
2025-02-20 14:53:09 +01:00
padding: 2%;
margin: 2%;
2025-02-14 11:13:18 +01:00
}
2025-02-19 01:19:36 +01:00
body {
background-color: #bdd5ea;
}
h1 {
color: #e1c300;
}
2025-02-22 02:02:14 +01:00
.clickable {
cursor: pointer;
}
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-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
.create-profile-card-section > * {
text-align: center;
margin-right: auto;
margin-left: auto;
display: block;
max-width: 1000px;
}
.create-profile-card-section .badge img {
width: 10%;
}
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;
2025-02-19 01:19:36 +01:00
border-radius: 1vw;
2025-02-20 14:53:09 +01:00
border: 0;
color: white;
padding: 1%;
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;
}
.invite-card {
margin: 5vh 20vw;
height: 100%;
2025-02-19 01:19:36 +01:00
}
.invite-card-content {
2025-02-19 14:11:44 +01:00
margin: 3% 5%;
padding: 0 10%;
2025-02-19 01:19:36 +01:00
}
.invite-card-content * {
margin: 1vh auto;
text-align: center;
}
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-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;
}
#nostr-signup-button {
width: 20vw;
border: 0;
2025-02-19 14:46:03 +01:00
}
#nostr-signup-button p {
2025-02-19 14:11:44 +01:00
font-size: 1.5rem;
}