File size: 1,422 Bytes
21ae1dc
 
 
 
 
 
 
aed5ad1
 
21ae1dc
aed5ad1
 
21ae1dc
 
 
 
aed5ad1
 
21ae1dc
 
aed5ad1
21ae1dc
 
 
 
 
aed5ad1
21ae1dc
 
 
aed5ad1
 
21ae1dc
 
 
 
 
 
 
 
 
aed5ad1
 
21ae1dc
 
 
 
aed5ad1
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/*
 * SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
 * SPDX-License-Identifier: Apache-2.0
 */

.prompts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.prompt-item {
  background: linear-gradient(145deg, #1a1a1a, #141414);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  word-break: break-word;
  overflow-wrap: break-word;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-out forwards;
  transform: translateY(20px);
  opacity: 0;
  font-size: 0.9rem;
  color: #fff;
}

.prompt-item:nth-child(1) { animation-delay: 0.1s; }
.prompt-item:nth-child(2) { animation-delay: 0.2s; }
.prompt-item:nth-child(3) { animation-delay: 0.3s; }
.prompt-item:nth-child(4) { animation-delay: 0.4s; }

.prompt-item:hover {
  background: linear-gradient(145deg, #1f1f1f, #1a1a1a);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.prompt-item:active {
  transform: translateY(0) scale(0.98);
}

.prompt-item .icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .prompts {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}