File tree Expand file tree Collapse file tree 1 file changed +66
-0
lines changed Expand file tree Collapse file tree 1 file changed +66
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments