-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatty.css
115 lines (94 loc) · 1.34 KB
/
chatty.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
body {
background-color: #EDF0FF;
font-color: black;
margin: 5%;
padding: 10%;
}
.darkBody {
background-color: #727272;
}
.darkContainer {
font-color: #DFDFDF;
margin: 0 auto;
padding-top: 20px;
/* overflow: auto;
*/ background-color: #727272;
width: 600px;
border: 1px solid #EDEFFE;
border-radius: 20px;
}
.largeText {
font-size: 50px;
}
.darkMessage {
color: white;
}
.darkMC {
border: 1px solid #DFDFDF;
margin: 20px 20px;
padding: 10px;
overflow: auto;
background-color: #727272;
}
.darkLogo {
color: white;
text-align: center;
}
.darkDelete {
color: white;
}
.largeDelete {
padding-top: 25px;
margin-right: -10px;
}
.deleteBtn {
padding-top: 2px;
margin-right: -10px;
}
.deleteHover {
color: darkgrey;
}
.darkHeader {
color: #F0F0F0;
}
.msgDiv {
display: inline-block;
}
.messageContainer {
border: 1px solid #B2B2B2;
margin: 20px 20px;
padding: 10px;
overflow: auto;
background-color: white;
}
.inputText {
text-align: center;
}
.text {
width: 60%;
height: 38px;
}
.contain {
margin: 0 auto;
padding-top: 20px;
background-color: #FFF;
width: 600px;
border: 1px solid #B2B2B2;
border-radius: 20px;
}
.options {
margin: 10px;
}
button {
height: 40px;
}
.logo {
text-align: center;
}
.innerDiv {
margin: 20px;
}
#output {
height: 300px;
overflow: auto;
}