147 lines
2.2 KiB
CSS
Executable File
147 lines
2.2 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;
|
|
}
|