kbsearch-extension/styles.css
2025-05-22 07:23:32 +08:00

58 lines
810 B
CSS

body {
font-family: Arial, sans-serif;
width: 320px;
padding: 10px;
background-color: #f9f9f9;
}
.container {
display: flex;
flex-direction: column;
}
input {
padding: 8px;
margin-bottom: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
padding: 8px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
#results {
list-style: none;
padding: 0;
margin-top: 10px;
}
#results li {
margin-bottom: 12px;
}
#results a {
font-weight: bold;
color: #007bff;
text-decoration: none;
}
#results a:hover {
text-decoration: underline;
}
#results .summary {
font-size: 12px;
color: #555;
margin-top: 4px;
}