File: /home/sundryrecruitment.co.uk/public_html/wp-content/plugins/quick-notes/quick-notes.css
#quick-notes {
max-width: 600px;
margin: 20px auto;
text-align: center;
}
#notes-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
.note {
width: 150px;
height: 150px;
padding: 10px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
background-color: #fef3bd;
position: relative;
}
.note textarea {
width: 100%;
height: 100%;
border: none;
resize: none;
background: transparent;
font-size: 14px;
}
.note .delete-note {
position: absolute;
top: 5px;
right: 5px;
cursor: pointer;
color: red;
font-weight: bold;
}
.add-note {
margin-top: 20px;
padding: 10px 20px;
background-color: #0073aa;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.add-note:hover {
background-color: #005a87;
}