-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
110 lines (93 loc) · 1.43 KB
/
styles.css
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
body {
margin: 0;
font-family: "Open Sans";
}
.hidden {
display: none;
}
.page-container {
height: 100vh;
width: 100vw;
background: #749C75;
padding: 4rem 2rem;
box-sizing: border-box;
}
.main-header {
margin: 0 0 2rem 0;
text-align: center;
font-family: "Lexend Peta";
font-size: 4rem;
}
.chat-container {
max-width: 60rem;
margin: 0 auto;
}
.conversation-output {
background: #EEEBD3;
height: 60vh;
overflow: scroll;
border-radius: 16px;
padding: 2rem;
box-sizing: border-box;
margin-bottom: 2rem;
display: flex;
flex-direction: column;
}
.form-container {
display: flex;
width: 100%;
margin: 0 auto;
justify-content: space-between;
gap: 1rem;
}
#user-request {
all: unset;
background: #EEEBD3;
width: 80%;
padding: 0.5rem 1rem;
border-radius: 4px;
}
#send-button {
all: unset;
background: #EEEBD3;
width: 25%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
border-radius: 4px;
}
#send-button:hover {
scale: 1.05;
cursor: pointer;
}
.msg-container {
margin-bottom: 1.5rem;
width: 80%;
}
.msg-header {
margin-bottom: 0.5rem;
margin-top: 0;
font-size: 1rem;
}
.msg-text {
margin: 0;
}
.gpt-msg {
align-self: end;
justify-self: end;
}
.gpt-header {
text-align: right;
}
@media (min-width: 600px) {
.form-container {
width: 80%;
}
.msg-container {
width: 90%;
}
#send-button {
width: 15%;
}
}