Skip to content

Commit 49b6bbf

Browse files
authored
Create styles.css
0 parents  commit 49b6bbf

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

styles.css

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/* Styling the overall sidebar */
2+
body {
3+
background-color: #FCF3F6; /* Pastel background */
4+
font-family: Arial, sans-serif;
5+
padding: 20px;
6+
}
7+
8+
/* Sidebar title styles */
9+
h2 {
10+
color: #CD2355; /* Primary color */
11+
font-weight: bold;
12+
margin-bottom: 20px;
13+
}
14+
15+
/* Heading styles */
16+
h3 {
17+
color: #CD2355; /* Primary color */
18+
font-weight: bold;
19+
}
20+
21+
/* Label styles */
22+
label {
23+
font-weight: bold;
24+
color: #CD2355; /* Primary color */
25+
display: block;
26+
margin-bottom: 8px;
27+
}
28+
29+
/* Input field styles */
30+
input[type="text"] {
31+
width: 100%;
32+
padding: 8px;
33+
margin-bottom: 20px;
34+
border: 2px solid #CD2355; /* Primary color */
35+
border-radius: 4px;
36+
box-sizing: border-box;
37+
}
38+
39+
/* Button styles */
40+
.primary-button {
41+
background-color: #242D9A; /* Main background color for buttons */
42+
color: white;
43+
border: none;
44+
padding: 10px;
45+
cursor: pointer;
46+
}
47+
48+
.primary-button:hover {
49+
background-color: #1C267D; /* Hover color */
50+
}
51+
52+
.disabled-button {
53+
background-color: grey; /* Disabled button style */
54+
color: white;
55+
border: none;
56+
padding: 10px;
57+
cursor: not-allowed;
58+
}
59+
60+
.loading-button {
61+
background-color: #46AF4B; /* Loading button color */
62+
color: white;
63+
border: none;
64+
padding: 10px;
65+
cursor: not-allowed;
66+
}

0 commit comments

Comments
 (0)