likhonsheikh commited on
Commit
4c6f220
·
verified ·
1 Parent(s): d52abc9

Upload styles.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. styles.css +28 -11
styles.css CHANGED
@@ -69,11 +69,8 @@ body {
69
  align-items: center;
70
  text-decoration: none;
71
  color: var(--color-text);
72
- }
73
-
74
- .logo svg {
75
- width: 20px;
76
- height: 20px;
77
  }
78
 
79
  .nav-links {
@@ -134,9 +131,9 @@ body {
134
 
135
  .btn-primary {
136
  padding: 0.4rem 0.875rem;
137
- border: 1px solid var(--color-primary);
138
- background: var(--color-primary);
139
- color: #ffffff;
140
  font-size: 13px;
141
  font-weight: 500;
142
  border-radius: var(--radius-md);
@@ -145,8 +142,8 @@ body {
145
  }
146
 
147
  .btn-primary:hover {
148
- background: #1a1a1a;
149
- border-color: #1a1a1a;
150
  }
151
 
152
  /* Main Container */
@@ -160,6 +157,21 @@ body {
160
  .hero {
161
  text-align: center;
162
  padding: 4rem 0 5rem 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  }
164
 
165
  .hero-title {
@@ -168,6 +180,8 @@ body {
168
  margin-bottom: var(--spacing-md);
169
  letter-spacing: -0.03em;
170
  line-height: 1.1;
 
 
171
  }
172
 
173
  .hero-subtitle {
@@ -175,6 +189,8 @@ body {
175
  color: var(--color-text-secondary);
176
  margin-bottom: var(--spacing-2xl);
177
  font-weight: 400;
 
 
178
  }
179
 
180
  /* Input Container */
@@ -188,7 +204,8 @@ body {
188
  border-radius: var(--radius-xl);
189
  background: var(--color-bg);
190
  transition: all 0.15s ease;
191
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
 
192
  }
193
 
194
  .input-container:hover {
 
69
  align-items: center;
70
  text-decoration: none;
71
  color: var(--color-text);
72
+ font-size: 16px;
73
+ font-weight: 600;
 
 
 
74
  }
75
 
76
  .nav-links {
 
131
 
132
  .btn-primary {
133
  padding: 0.4rem 0.875rem;
134
+ border: 1px solid var(--color-border);
135
+ background: var(--color-bg);
136
+ color: var(--color-text);
137
  font-size: 13px;
138
  font-weight: 500;
139
  border-radius: var(--radius-md);
 
142
  }
143
 
144
  .btn-primary:hover {
145
+ background: var(--color-hover);
146
+ border-color: var(--color-border-hover);
147
  }
148
 
149
  /* Main Container */
 
157
  .hero {
158
  text-align: center;
159
  padding: 4rem 0 5rem 0;
160
+ position: relative;
161
+ }
162
+
163
+ .hero-watermark {
164
+ position: absolute;
165
+ top: 50%;
166
+ left: 50%;
167
+ transform: translate(-50%, -50%);
168
+ font-size: 240px;
169
+ font-weight: 700;
170
+ color: rgba(0, 0, 0, 0.02);
171
+ letter-spacing: -0.05em;
172
+ z-index: 0;
173
+ pointer-events: none;
174
+ user-select: none;
175
  }
176
 
177
  .hero-title {
 
180
  margin-bottom: var(--spacing-md);
181
  letter-spacing: -0.03em;
182
  line-height: 1.1;
183
+ position: relative;
184
+ z-index: 1;
185
  }
186
 
187
  .hero-subtitle {
 
189
  color: var(--color-text-secondary);
190
  margin-bottom: var(--spacing-2xl);
191
  font-weight: 400;
192
+ position: relative;
193
+ z-index: 1;
194
  }
195
 
196
  /* Input Container */
 
204
  border-radius: var(--radius-xl);
205
  background: var(--color-bg);
206
  transition: all 0.15s ease;
207
+ position: relative;
208
+ z-index: 1;
209
  }
210
 
211
  .input-container:hover {