You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

95 lines
1.7 KiB

.goals-container {
max-width: 800px;
margin: 30px auto;
padding: 20px;
}
.goals-page-header {
text-align: center;
margin-bottom: 40px;
}
.goals-page-header-title {
font-size: 2em;
color: #457B9D; /* Muted blue for main headings */
}
.goals-page-header-content {
font-size: 1.1em;
color: #495057; /* Slightly darker gray for descriptions */
}
.add-goal {
margin-bottom: 40px;
padding: 20px;
background-color: #FFFFFF; /* White for section backgrounds */
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.add-goals-title {
margin-bottom: 20px;
font-size: 1.5em;
color: #457B9D;
}
.add-goal-title {
color: #A3C1AD; /* Muted green for emphasis */
}
.form-group {
margin-bottom: 20px;
}
.goals-form-label {
display: block;
font-weight: bold;
margin-bottom: 8px;
color: #495057; /* Dark gray for labels */
}
input, textarea {
width: 100%;
padding: 10px;
font-size: 1em;
border: 1px solid #DDD;
border-radius: 5px;
box-sizing: border-box;
}
.goals-textfield {
resize: none;
height: 100px;
}
.goal-items {
display: flex;
flex-direction: column;
gap: 20px;
}
.goal-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
border: 1px solid #DDD;
border-radius: 5px;
background-color: #F9F9F9; /* Subtle light gray for contrast */
}
.item-info-title {
margin: 0 0 5px 0;
font-size: 1.2em;
color: #333;
}
.item-info-content {
margin: 0;
font-size: 1em;
color: #666;
}
.goal-progress {
font-weight: bold;
color: #457B9D; /* Muted blue for progress text */
}