-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
126 lines (108 loc) · 2.22 KB
/
styles.css
File metadata and controls
126 lines (108 loc) · 2.22 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
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
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body, html {
height: 100%;
}
body {
padding: 0;
margin: 0;
background-color: #2e2d2d;
color: #ffffff;
font-family: Roboto, Arial, sans-serif;
display: flex;
flex-direction: row;
}
p {
padding: 0;
margin: 0;
}
.server-list {
background-color: #121314;
width: 70px;
height: 100%;
padding: 5px;
display: flex;
justify-content: center;
}
.channel-list {
background-color: #202224;
width: 200px;
height: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
padding-top: 10px;
flex-direction: column;
}
.channel {
background-color: #2f2f30;
padding: 5px;
border-radius: 5px;
width: 80%;
margin-bottom: 5px;
}
.message-area {
background-color: #2f2f30;
width: 100%;
padding: 10px;
display: flex;
flex-direction: column;
}
.members-list {
background-color: #121314;
width: 250px;
height: 100%;
}
.alert {
padding: 20px;
background-color: #f44336;
color: white;
margin-bottom: 15px;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: black;
}
.message {
margin-bottom: 25px;
}
.message p[data-user] {
font-weight: bold;
}
.message img {
float: left;
margin-right: 10px;
border-radius: 100%;
height: 50px;
}
.member {
display: flex;
align-items: center;
padding: 5px;
}
.member img {
height: 35px;
border-radius: 100%;
margin-right: 10px;
}
.input-area {
margin-top: auto;
padding: 10px;
border-top: 1px solid #ccc;
background-color: #f9f9f9;
}
input[type="text"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}