forked from scalableminds/chatroom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
35 lines (32 loc) · 638 Bytes
/
Copy pathindex.css
File metadata and controls
35 lines (32 loc) · 638 Bytes
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
* {
font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
box-sizing: border-box;
}
.chat-container {
margin: 100px auto;
width: 360px;
z-index: 100;
box-shadow: 0 0 3em black;
}
@media (max-width: 400px) {
.chat-container {
margin: 20px 10px;
width: auto;
}
}
.chat-demo-button {
border-radius: 3px;
color: #343d4e;
border: 2px solid #343d4e;
padding: 5px 10px;
background-color: white;
outline: none;
font-size: 12px;
cursor: pointer;
}
.chat-demo-button:hover {
background-color: rgba(52, 61, 78, 0.3);
}
.chat-demo-button:active {
background-color: rgba(52, 61, 78, 0.8);
}