-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
136 lines (132 loc) · 2.26 KB
/
style.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
::-webkit-scrollbar{
width: 10px;
background: #fff;
}
::-webkit-scrollbar-thumb{
border-radius: 10px;
background: #9e9e9e;
}
::-webkit-scrollbar-track{
box-shadow: inset 0 0 6px rgba(0,0,0.2);
background: #444446;
}
*{
box-sizing: border-box;
}
body{
font-family: Helvetica,Arial, sans-serif;
font-size: 13px;
}
.container{
margin: 30px;
margin-left: 3cm;
width: 600px;
height: 70vh;
}
.title {
text-align: center;
color: hsl(0,0%,30%);
font-size: 45px;
font-weight: bold;
font-family: monospace;
letter-spacing: 7px;
cursor: pointer;
text-transform: uppercase;
background: linear-gradient(
to right,
hsl(0,0%,30%)0,
hsl(0,0%,100%)10%,
hsl(0,0%,30%)20%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: shine 3s infinite linear;
}
@keyframes shine{
0%{
background-position: 0;
}
60%{
background-position: 600px;
}
100%{
background-position: 600px;
}
}
.chat{
height: 90%;
overflow-y: scroll;
background: #333336;
border-radius: 10px 0 0 0;
}
.chat div{
margin: 10px 12px 15px;
line-height: 20px;
}
.chat .party{
font-weight: bold;
}
.chat .you{
color: #999;
}
.chat .other{
color: #666;
}
.busy{
right: 5cm;
padding: 3px 0;
color: #666;
display: none;
font-size: 11px;
}
.input{
margin-top: 20px;
}
.input input{
vertical-align: top;
float: left;
border: 1px solid #ccc;
padding: 5px;
width: 450px;
margin: 0;
border-radius: 5px;
background: #444446;
color: #fff;
}
.input a{
display: flex;
justify-content: center;
align-items: center;
float: right;
font-weight: bold;
border: 1px solid #ccc;
background: #444446;
padding: 7px 35px;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.input a:hover{
background: #ddd;
cursor: pointer;
color: #000;
}
.text{
color: #fff;
}
.footer{
color: hsl(0,0%,30%);
position: absolute;
bottom: 2cm;
left: 8.5cm;
font-size: 15px;
height: 1px;
}
.wrapper{
color: hsl(0,0%,30%);
position: absolute;
bottom: 1cm;
left: 10cm;
font-size: 20px;
height: 1px;
}