-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
66 lines (58 loc) · 1.2 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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;
}