File size: 2,573 Bytes
a4d1533
5aeac76
a4d1533
 
 
 
 
 
 
 
5aeac76
 
a4d1533
 
 
 
5aeac76
 
a4d1533
 
 
 
 
 
5aeac76
 
 
a4d1533
 
 
5aeac76
 
a4d1533
 
 
5aeac76
 
a4d1533
 
 
5aeac76
 
a4d1533
 
 
 
 
5aeac76
 
a4d1533
 
 
 
 
5aeac76
 
a4d1533
 
 
 
 
 
5aeac76
 
a4d1533
 
 
 
5aeac76
 
a4d1533
 
 
 
 
5aeac76
 
a4d1533
 
 
 
5aeac76
 
a4d1533
 
 
5aeac76
 
a4d1533
 
 
5aeac76
 
a4d1533
 
 
 
5aeac76
 
a4d1533
 
 
5aeac76
 
a4d1533
 
5aeac76
 
a4d1533
 
 
5aeac76
 
a4d1533
 
5aeac76
 
a4d1533
 
 
 
 
5aeac76
 
a4d1533
 
 
 
 
 
5aeac76
 
a4d1533
 
 
 
 
 
5aeac76
 
a4d1533
 
5aeac76
 
a4d1533
 
 
 
5aeac76
 
a4d1533
 
 
 
5aeac76
 
a4d1533
 
 
 
 
 
 
 
5aeac76
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* Haven Kitchen OS - HuggingFace Space Styling */

:root {
    --sage: #6B8E6B;
    --sage-light: #D4E6D5;
    --amber: #C07A5C;
    --amber-light: #FFF8F0;
    --cream: #EBE7DE;
    --text-dark: #2C3E50;
    --text-light: #888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, #FAF9F6 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.hero-icons {
    font-size: 48px;
    margin-bottom: 15px;
}

h1 {
    font-family: 'Georgia', serif;
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

h2 {
    color: var(--sage);
    margin-bottom: 20px;
    font-size: 24px;
}

.personas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.persona {
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.persona.olivia {
    background: var(--sage-light);
    border: 2px solid var(--sage);
}

.persona.brie {
    background: var(--amber-light);
    border: 2px solid var(--amber);
}

.persona .emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.persona h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.features ul {
    list-style: none;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.features li:last-child {
    border-bottom: none;
}

.commands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.cmd {
    background: var(--sage);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

pre {
    background: #2C3E50;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    overflow-x: auto;
}

code {
    font-family: 'Monaco', 'Consolas', monospace;
}

footer {
    text-align: center;
    padding: 30px;
    color: var(--text-light);
}

.hashtags {
    margin-top: 10px;
    color: var(--sage);
    font-weight: bold;
}

@media (max-width: 600px) {
    .personas {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 32px;
    }
}