File size: 838 Bytes
ce1ab17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/*
 * SPDX-FileCopyrightText: Hadad <[email protected]>
 * SPDX-License-Identifier: Apache-2.0
 */

@media (min-width: 7680px) {
  :root {
    --header-height: 7rem;
    --footer-height: 9rem;
    --border-radius: 2rem;
    --bubble-radius: 2rem;
    --prompt-radius: 2rem;
    font-size: 1.6rem;
  }

  .title {
    font-size: clamp(4rem, 1.5vw, 7rem);
  }

  .prompts {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 3000px;
    gap: 2rem;
  }

  .prompt-item {
    padding: 2rem 2.25rem;
    border-radius: 2rem;
  }

  .bubble {
    padding: 2rem 2.25rem;
    font-size: 1.4rem;
    border-radius: 2rem;
  }

  #userInput {
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
  }

  #sendBtn, #stopBtn {
    width: 4.5rem;
    height: 4.5rem;
  }

  .icon-btn {
    width: 4rem;
    height: 4rem;
  }
}