-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnewchat.css
107 lines (92 loc) · 1.76 KB
/
newchat.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
html,
body {
height: 100%;
}
.logo {
text-align: center;
}
.ti {
color: #f5f5f5;
font-family: "Times New Roman", Times, serif;
font-size: 70px;
float: left;
}
.createChatroom {
background-color: #f5f5f5;
max-width: 1100px;
padding: 15px;
margin: 10%;
border: 1px solid black;
border-radius: 15px;
float: center;
}
.tag {
float: left;
padding-top: 10px;
padding-bottom: 10px;
width: 100%;
position: relative;
}
.fp {
width: 100%;
padding: 15px;
}
.createChatroom .checkbox {
font-weight: 400;
padding-top: 10px;
}
.createChatroom .form-control {
position: relative;
box-sizing: border-box;
height: auto;
padding: 10px;
font-size: 16px;
}
.createChatroom .form-control:focus {
z-index: 2;
}
/* Dropdown Button */
.dropbtn {
width: 100%;
background-color: rgb(172, 179, 172);
color: white;
padding: 16px;
font-size: 16px;
border: none;
display: inline;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
width: 100%;
position: relative;
border-radius: 15px;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
width: 100%;
display: none;
position: absolute;
background-color: #f1f1f1;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
background-color: #113322;
}