-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (92 loc) · 1.35 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
html, body
{
height: 100%;
margin: 0;
}
body
{
background-image: linear-gradient(to right top, #33a0f1, #2591d9, #1882c1, #0a73aa, #006494);
}
.header
{
color: white;font-family: 'Yeon Sung';font-size: 45px;letter-spacing: 10px;margin-top: 80px;
}
.header img
{
width: 80px;margin-left: -15px;
}
.login_div
{
background: rgba(255,255,255,0.8);float: none;border-radius: 15px;
}
.logo
{
width: 80px;margin-top: 30px;border-radius: 40px;
}
#login_button
{
width: 80%;border-radius: 15px;
}
.room_name
{
cursor: pointer;
font-size: 20px;
}
#logout
{
font-size: 20px; float: right;
}
#output
{
padding: 10px;
background-color:#f1c3da;
color:black;
width:1000px;
}
.divofroom
{
height:5px;
}
.input_div_room_page
{
width: 80%;
}
hr{
height: 10px;
background-color: #F5F5F5;
border: none;
size:25px;
}
.input_div label
{
color: white;font-size: 20px;
}
.input_div_message_page
{
position: fixed;bottom: 0px;width: 100%;background: rgba(255,255,255,0.8);
}
.input_div_message_page label
{
color: black;
}
.input_div_message_page #msg
{
width: 80%;
}
.input_div_message_page button
{
margin-top: 15px;
width: 50%;
}
.color_white
{
color: white;
}
.user_tick
{
width:20px;
}
.message_h4
{
padding-left:5px;color:grey;
}