AI-smart-notes / static /style.css
Vargock
First commit
5cdaf63
body {
box-sizing: border-box;
margin: 2rem;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
}
h1 {
text-align: center;
margin-bottom: 2rem;
}
form {
max-width: 800px;
margin: 0 auto;
}
textarea {
width: 100%;
min-height: 150px;
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1rem;
resize: vertical;
}
button {
padding: 0.6rem 1.2rem;
background-color: #4a90e2;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
margin-top: 1rem;
}
button:hover {
background-color: #357ab8;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 1.5rem;
}
th,
td {
border: 1px solid #ccc;
padding: 0.75rem;
text-align: center;
}
th {
background-color: #4a90e2;
color: white;
}
a {
display: inline-block;
margin-top: 1rem;
text-decoration: none;
color: #4a90e2;
}
a:hover {
text-decoration: underline;
}
.link-wrapper {
text-align: center;
}