-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
79 lines (73 loc) · 1.61 KB
/
style.scss
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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
#cheaterGPT__container{
border: 1px solid black;
background-color: white;
border-radius: 5px;
padding: 1rem 0.5rem;
padding-top: 0;
width: fit-content;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
z-index: 1000000;
font-family: 'Poppins';
p{
margin: 0;
padding: 0;
}
&.hide{
opacity: 0;
z-index: -10000;
pointer-events: none;
}
#beforeAPIkey{
// display: none;
}
#afterAPIkey{
display: none;
}
#gptHolder{
height: 2rem;
width: auto;
text-align: center;
width: 100%;
cursor: move;
}
.gptField{
display: flex;
justify-content: center;
align-items: center;
input{
border: none;
border-bottom: 1px solid darkslategray;
border-radius: 0;
padding: 0.2rem 0.3rem;
font-family: inherit;
width: 100%;
&:focus{
outline: none !important;
}
}
img{
height: 1.5rem;
width: auto;
cursor: pointer;
}
}
#gptAnswer{
$this-height:100px;
overflow: auto;
min-height: $this-height;
max-height: 50vh;
min-width: 100%;
max-width: 50vw;
margin-top: 1rem;
background-color: lightgrey;
border-radius: 5px;
padding: 0.2rem;
p{
margin: 0.2rem 0;
}
}
}