File size: 1,807 Bytes
cb0d4a7
 
 
 
 
 
 
 
 
 
9a0e3d5
cb0d4a7
 
 
 
 
 
 
 
 
733fcd8
 
cb0d4a7
 
733fcd8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cb0d4a7
733fcd8
 
cb0d4a7
733fcd8
 
 
 
 
cb0d4a7
 
733fcd8
 
 
 
cb0d4a7
733fcd8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cb0d4a7
 
 
 
 
 
 
 
 
 
 
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
:root {
    --bg-primary: #ffffff; 
    --bg-secondary: #f1f3f6;
    --text-primary: #000000;
    --text-secondary: #333333;
    --border-color: #4a90e2;
    --shadow-color: rgba(0, 0, 0, 0.1);

}

/* Dark mode */
[data-theme="dark"] {
    --bg-primary: #1e1e1e;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --border-color: #6bb6ff;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.block-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.project-header {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.home-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.home-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 20px var(--shadow-color);
    max-width: 600px;
    text-align: center;
}

.about-box {
    background-color: var(--bg-secondary);
    border-left: 5px solid var(--border-color);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

img {
    border-radius: 10px;
}

/* Reduce sidebar width */
.css-1d391kg, .css-1d391kg > div {
    width: 250px !important;
}

/* Standard text sizes */
h1 { font-size: 2.2rem; }
h2 { font-size: 1.5rem; }
p, li { font-size: 1rem; }

/* Sidebar tweaks */
.css-1lcbmhc { padding-top: 2rem; }

@media (prefers-color-scheme: dark) {
    :root {
      --bg-primary: #1e1e1e;
      --bg-secondary: #2d2d2d;
      --text-primary: #ffffff;
      --text-secondary: #e0e0e0;
      --border-color: #6bb6ff;
      --shadow-color: rgba(0, 0, 0, 0.3);
    }
  }