secajs/src/public/css/seca.css

77 lines
1 KiB
CSS
Raw Normal View History

2025-02-19 01:19:36 +01:00
* {
font-family: 'Courier New', Courier, monospace;
}
2025-02-13 17:25:23 +01:00
.badge {
2025-02-14 11:13:18 +01:00
border: 2px solid black;
border-radius: 10px;
margin: 5px;
padding: 5px;
}
2025-02-19 01:19:36 +01:00
body {
background-color: #bdd5ea;
}
h1 {
color: #e1c300;
}
.invite-card {
margin: 5vh 20vw;
background-color: white;
height: 100%;
padding: 2vw;
border-radius: 1vw;
}
.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;
}
.invite-card-popup {
background-color: #369;
border-radius: 1vw;
padding: 1vw;
color: white;
}
.invite-card-popup a {
color: white;
}
.invite-card-popup a:hover {
2025-02-19 14:11:44 +01:00
color: #e1c300;
}
2025-02-19 14:46:03 +01:00
#nostr-signup-button {
2025-02-19 14:11:44 +01:00
width: 20vw;
background: #a915ff;
border-radius: 1vw;
border: 0;
color: white;
font-weight: bold;
padding: 1%;
2025-02-19 14:46:03 +01:00
cursor: pointer;
2025-02-19 14:11:44 +01:00
}
2025-02-19 14:46:03 +01:00
#nostr-signup-button:hover {
background-color: #b941ff;
}
#nostr-signup-button:disabled {
background-color: #d8d8d8;
cursor: default;
}
#nostr-signup-button p {
2025-02-19 14:11:44 +01:00
font-size: 1.5rem;
}