-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
105 lines (101 loc) · 1.97 KB
/
home.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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Merriweather:wght@700&display=swap');
body {
display: flex;
font-family: 'Inter', sans-serif;
margin: 0;
height: 100vh;
background-color: #f8f9fa;
}
.sidebar {
width: 250px;
background-color: #00274C;
color: white;
padding: 20px;
font-family: 'Inter', sans-serif;
}
#new-chat {
background-color: #ffcb05;
border: none;
padding: 10px;
width: 100%;
font-size: 16px;
cursor: pointer;
font-weight: 700;
}
.main-content {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: white;
padding: 20px;
}
header {
display: flex;
align-items: center;
gap: 10px;
font-family: 'Merriweather', serif;
}
header img {
height: 50px;
}
header h1 {
font-family: 'Merriweather', serif;
font-weight: 700;
color: #00274C;
}
.about {
background-color: #00274C;
color: white;
border: none;
position: absolute;
top: 20px;
right: 20px;
padding: 10px;
font-size: 16px;
cursor: pointer;
font-weight: 600;
font-family: 'Inter', sans-serif;
text-decoration: none;
}
.chat-container {
flex-grow: 1;
width: 80%;
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.chat-input {
display: flex;
align-items: center;
width: 80%;
background-color: white;
padding: 10px;
border-radius: 20px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.chat-input img {
height: 20px;
margin-right: 10px;
}
.chat-input input {
flex-grow: 1;
border: none;
padding: 10px;
font-size: 16px;
outline: none;
font-family: 'Inter', sans-serif;
}
.send-button {
background: none;
border: none;
font-size: 20px;
cursor: pointer;
color: #1a73e8;
}
li{
list-style-type: none;
padding: 8px;
}