Files
titlebot-ng-ng/voteServer/htm/css.css
T

212 lines
3.1 KiB
CSS
Executable File

.suggestor {
font-weight: italic;
color: #222;
}
.suggestion {
font-weight: bold;
color: #844;
text-decoration: underline;
}
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
input[type="text"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
color: #333;
}
#suggestion_list {
list-style-type: none;
padding: 0;
}
#suggestion_list li {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
margin-top: 10px;
margin-right: 5px;
}
button:hover {
background-color: #45a049;
}
button:disabled {
background-color: #999;
cursor: not-allowed;
}
#submit_vote {
margin-top: 20px;
font-size: 20px;
}
#auth_section {
margin-bottom: 30px;
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
background: #fafafa;
}
#vote_section {
margin-top: 20px;
}
#logged_in_as {
padding: 10px;
background: #e8f5e9;
border-radius: 4px;
margin-bottom: 15px;
font-weight: bold;
color: #2e7d32;
}
.info-box {
padding: 8px 12px;
margin-bottom: 15px;
background: #e3f2fd;
border-radius: 4px;
color: #1565c0;
font-size: 14px;
}
.success {
padding: 8px 12px;
margin-top: 10px;
background: #e8f5e9;
border-radius: 4px;
color: #2e7d32;
}
.error {
padding: 8px 12px;
margin-top: 10px;
background: #ffebee;
border-radius: 4px;
color: #c62828;
}
#connect_btn {
background-color: #f57c00;
margin-bottom: 15px;
}
#connect_btn:hover {
background-color: #ef6c00;
}
#auth_btn {
background-color: #1976d2;
}
#auth_btn:hover {
background-color: #1565c0;
}
#link_link {
display: inline-block;
margin-top: 10px;
color: #666;
font-size: 14px;
}
#link_link:hover {
color: #333;
}
#auth_method_select {
text-align: center;
margin-bottom: 10px;
}
#auth_method_select p {
margin-bottom: 15px;
font-size: 16px;
color: #555;
}
#matrix_auth_btn {
background-color: #0dbd8b;
margin-right: 10px;
}
#matrix_auth_btn:hover {
background-color: #0aa37a;
}
#nostr_auth_btn {
background-color: #f57c00;
}
#nostr_auth_btn:hover {
background-color: #ef6c00;
}
#login_form {
max-width: 400px;
}
#login_form input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
#back_link {
display: inline-block;
margin-top: 20px;
color: #666;
font-size: 14px;
}
#back_link:hover {
color: #333;
}
#sign_out_btn {
background-color: #999;
font-size: 12px;
padding: 4px 12px;
margin-top: 5px;
margin-bottom: 15px;
}
#sign_out_btn:hover {
background-color: #777;
}