-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
132 lines (109 loc) · 2.25 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* GENERAL STYLES */
* {
color: #efefef;
font-family: 'Poppins', sans-serif;
}
body {
margin: 0;
padding: 0;
background-color: #161d27;
display: flex; /* [demo] allow sidebar layout */
}
.big-title {
font-size: 35px;
font-weight: 700;
padding: 100px 0; /* [demo] tpo-bottom, left-right*/
}
/* SIDEBAR STYLES */
.sidebar-section {
background-color: #06080b;
width: 230px;
height: 100vh;
display: flex;
flex-direction: column; /* [demo] stack children vertically */
justify-content: space-between;
}
.newchat-button {
border: solid 0.5px rgba(219, 219, 219, 0.5);
background-color: transparent;
border-radius: 6px;
padding: 10px;
margin: 15px 10px;
display: flex;
justify-content: center;
align-items: center;
}
.chat-button-icon {
width: 20px;
margin-right: 9px;
}
nav {
border-top: solid 0.5px rgba(219, 219, 219, 0.5);
padding: 10px;
margin: 10px;
font-weight: 300;
font-size: 12px;
color: rgba(219, 219, 219, 0.5);
text-align: center;
}
.history {
padding: 10px;
margin: 10px;
}
.history-title {
font-size: 10px;
color: #c1c1c1;
}
.history p {
cursor: pointer;
}
/* MAIN SECTION STYLES */
.main-section {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: space-between;
height: 100vh;
width: 100%;
}
.bottom-content {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.info {
color: rgba(219, 219, 219, 0.5);
font-size: 11px;
padding: 10px;
}
#input {
border: none;
background-color: #4377cb;
width: 100%;
font-size: 20px;
padding: 12px 15px;
margin: 10px;
border-radius: 8px;
box-shadow: rgba(0, 0, 0, 0.05) 5px 5px 5px;
}
#input:focus {
outline: none;
}
.input-container {
position: relative; /* have the children with absolute position */
width: 90%;
max-width: 600px;
}
.input-container #submit {
position: absolute;
right: -10px;
bottom: 25px;
cursor: pointer;
}
#output {
width: 75%;
}