99 lines
1.6 KiB
CSS
99 lines
1.6 KiB
CSS
|
/* styles.css */
|
||
|
|
||
|
body {
|
||
|
background-color: lightblue;
|
||
|
color: #333;
|
||
|
font-family: Monospace;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
max-width: 800px;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
background-color: #f2c538;
|
||
|
color: #333;
|
||
|
padding: 10px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.task {
|
||
|
margin-bottom: 10px;
|
||
|
padding: 10px;
|
||
|
border: 1px solid #ccc;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
.task:hover {
|
||
|
background-color: #f9f9f9;
|
||
|
}
|
||
|
|
||
|
.task .timestamp {
|
||
|
font-size: 12px;
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
background-color: #f2c538;
|
||
|
color: #333;
|
||
|
border: none;
|
||
|
padding: 8px 16px;
|
||
|
cursor: pointer;
|
||
|
text-decoration: none;
|
||
|
display: inline-block;
|
||
|
margin-right: 5px;
|
||
|
}
|
||
|
|
||
|
.btn:hover {
|
||
|
background-color: #e0b52f;
|
||
|
}
|
||
|
|
||
|
.form-container {
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
|
||
|
.form-container input[type="text"] {
|
||
|
width: calc(100% - 100px);
|
||
|
padding: 10px;
|
||
|
margin-right: 10px;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.form-container input[type="submit"] {
|
||
|
background-color: #f2c538;
|
||
|
color: #333;
|
||
|
border: none;
|
||
|
padding: 8px 16px;
|
||
|
cursor: pointer;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.form-container input[type="submit"]:hover {
|
||
|
background-color: #e0b52f;
|
||
|
}
|
||
|
|
||
|
.search-container {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.search-container input[type="text"] {
|
||
|
width: 200px;
|
||
|
padding: 8px;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.search-container input[type="submit"] {
|
||
|
background-color: #f2c538;
|
||
|
color: #333;
|
||
|
border: none;
|
||
|
padding: 6px 12px;
|
||
|
cursor: pointer;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.search-container input[type="submit"]:hover {
|
||
|
background-color: #e0b52f;
|
||
|
}
|