49 lines
686 B
CSS
49 lines
686 B
CSS
/* styles/popup.css */
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
padding: 10px;
|
|
width: 300px;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 20px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-top: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
input[type="text"],
|
|
textarea {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.actions {
|
|
margin-top: 15px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
|
|
button {
|
|
padding: 8px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 15px;
|
|
font-size: 10px;
|
|
text-align: center;
|
|
color: #666;
|
|
}
|
|
|
|
#project-banner {
|
|
display: none;
|
|
} |