Skip to content

Commit

Permalink
Create appsstyle.css
Browse files Browse the repository at this point in the history
  • Loading branch information
lparfitt authored Oct 23, 2024
1 parent 2b8fc18 commit 8dd8b99
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions appsstyle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/* Styling the overall sidebar */
body {
background-color: #FCF3F6; /* Pastel background */
font-family: Arial, sans-serif;
padding: 20px;
}

/* Sidebar title styles */
h2 {
color: #CD2355; /* Primary color */
font-weight: bold;
margin-bottom: 20px;
}

/* Heading styles */
h3 {
color: #CD2355; /* Primary color */
font-weight: bold;
}

/* Label styles */
label {
font-weight: bold;
color: #CD2355; /* Primary color */
display: block;
margin-bottom: 8px;
}

/* Input field styles */
input[type="text"] {
width: 100%;
padding: 8px;
margin-bottom: 20px;
border: 2px solid #CD2355; /* Primary color */
border-radius: 4px;
box-sizing: border-box;
}

/* Button styles */
.primary-button {
background-color: #242D9A; /* Main background color for buttons */
color: white;
border: none;
padding: 10px;
cursor: pointer;
}

.primary-button:hover {
background-color: #1C267D; /* Hover color */
}

.disabled-button {
background-color: grey; /* Disabled button style */
color: white;
border: none;
padding: 10px;
cursor: not-allowed;
}

.loading-button {
background-color: #46AF4B; /* Loading button color */
color: white;
border: none;
padding: 10px;
cursor: not-allowed;
}

0 comments on commit 8dd8b99

Please sign in to comment.