-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.css
More file actions
74 lines (56 loc) · 1.03 KB
/
feed.css
File metadata and controls
74 lines (56 loc) · 1.03 KB
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
/* Styling given, you don't need to edit this file at all! */
* {
box-sizing: border-box;
}
#root {
display: flex;
flex-direction: column;
min-height: 95vh;
}
/* Styling chat window */
#chat-window {
flex-grow: 1;
max-height: 50vh;
overflow: auto;
display: grid;
grid-template-columns: auto minmax(0, 1fr);
gap: 10px;
justify-content: flex-end;
}
.user {
font-weight: bold;
font-family: sans-serif;
}
.message {
display: flex;
flex-wrap: wrap;
}
/* Styling the inputs/buttons */
#chat-form {
display: flex;
margin-bottom: 5px;
}
#input {
flex-grow: 1;
margin-right: 5px;
}
#input, #send-btn, #gif-btn {
font-size: 1.1em;
}
/* Styling the gifs div and images */
#gifs {
display: flex;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
max-height: 35vh;
overflow: auto;
border: 1px solid black;
}
#gifs img {
margin: 5px;
}
#gifs img:hover {
outline: 2px solid black;
cursor: pointer;
}