Update public/stylesheet.css
Browse files- public/stylesheet.css +51 -10
public/stylesheet.css
CHANGED
@@ -1,18 +1,59 @@
|
|
|
|
1 |
body {
|
2 |
-
|
|
|
|
|
|
|
|
|
3 |
}
|
4 |
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
7 |
}
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
13 |
}
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
}
|
|
|
1 |
+
/* General layout settings */
|
2 |
body {
|
3 |
+
font-family: 'Inter', sans-serif;
|
4 |
+
background-color: #FAFAFA; /* Corresponds to --background */
|
5 |
+
color: #000000; /* Default text color */
|
6 |
+
margin: 0;
|
7 |
+
padding: 0;
|
8 |
}
|
9 |
|
10 |
+
/* Paper/Container settings */
|
11 |
+
.container {
|
12 |
+
background-color: #FFFFFF; /* Corresponds to --paper */
|
13 |
+
padding: 1rem;
|
14 |
+
border-radius: 8px; /* Optional: Add rounded corners */
|
15 |
+
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for cards */
|
16 |
}
|
17 |
|
18 |
+
/* Primary color styling */
|
19 |
+
.primary {
|
20 |
+
color: #F80061; /* Corresponds to --primary */
|
21 |
+
background-color: #FFE7EB; /* Corresponds to --primary.light */
|
22 |
+
border: 2px solid #980039; /* Corresponds to --primary.dark */
|
23 |
+
padding: 0.5rem;
|
24 |
+
border-radius: 4px;
|
25 |
+
text-align: center;
|
26 |
+
font-weight: bold;
|
27 |
}
|
28 |
|
29 |
+
/* Buttons */
|
30 |
+
button {
|
31 |
+
background-color: #F80061; /* Corresponds to --primary */
|
32 |
+
color: #FFFFFF; /* Ensure high contrast */
|
33 |
+
border: none;
|
34 |
+
padding: 0.5rem 1rem;
|
35 |
+
border-radius: 4px;
|
36 |
+
cursor: pointer;
|
37 |
+
}
|
38 |
+
|
39 |
+
button:hover {
|
40 |
+
background-color: #980039; /* Corresponds to --primary.dark */
|
41 |
+
}
|
42 |
+
|
43 |
+
/* Links */
|
44 |
+
a {
|
45 |
+
color: #F80061; /* Corresponds to --primary */
|
46 |
+
text-decoration: none;
|
47 |
+
}
|
48 |
+
|
49 |
+
a:hover {
|
50 |
+
color: #980039; /* Corresponds to --primary.dark */
|
51 |
+
}
|
52 |
+
|
53 |
+
/* Optional: Sidebar or panels */
|
54 |
+
.sidebar {
|
55 |
+
background-color: #FAFAFA; /* Matches light theme background */
|
56 |
+
color: #000000; /* Ensure readability */
|
57 |
+
padding: 1rem;
|
58 |
+
border-right: 1px solid #CCCCCC; /* Subtle border for separation */
|
59 |
}
|