RSHVR commited on
Commit
099668b
·
verified ·
1 Parent(s): 038bf22

Update styles.css

Browse files
Files changed (1) hide show
  1. styles.css +21 -0
styles.css CHANGED
@@ -1,3 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  /* Header styling */
2
  .header-container {
3
  background: var(--header-gradient);
 
1
+ /* Global Styles */
2
+ :root {
3
+ --primary-color: #0158A3;
4
+ --primary-light: #6366f1;
5
+ --primary-dark: #3730a3;
6
+ --secondary-color: #FFDA00;
7
+ --accent-color: #ec4899;
8
+ --text-color: #0f172a;
9
+ --text-light: #64748b;
10
+ --bg-color: #f8fafc;
11
+ --card-bg: #ffffff;
12
+ --border-color: #e2e8f0;
13
+ --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
14
+ --transition: all 0.3s ease;
15
+ --radius: 12px;
16
+ --header-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
17
+ }
18
+
19
+
20
+
21
+
22
  /* Header styling */
23
  .header-container {
24
  background: var(--header-gradient);