-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdivstyles.css
109 lines (101 loc) · 1.81 KB
/
divstyles.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
@charset "utf-8";
* {
margin: 0;
padding: 0;
}
div {
border: 1px;
border-color: black;
border-style: solid;
}
div.window-location {
width: 100%; /* 800px; */
height: 100%; /* 600px; */
background-color: rgba(0, 0, 0, 0.219);
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
div.main-window {
width: 100%;
height: 100%;
position: relative;
}
div.table {
width: 100%;
height: 100%;
display: table;
}
div.table-row {
display: table-row;
}
div.table-cell {
/* border: 1px solid red; */
display: table-cell;
}
div.table-cell.table-rowspan {
position: absolute;
top: 0;
bottom: 0;
width: 100px;
}
#main-apikey, #main-connect-button, #main-send-chat, #main-send-chat-button {
height: 25px;
}
#main-chat {
position: absolute;
top: 30px;
left: 3px;
height: calc(100% - 60px);
width: calc(100% - 227px);
}
#main-channel-title {
position: absolute;
top: 30px;
left: calc(100% - 220px);
height: 20px;
width: 215px;
}
#main-userlist {
position: absolute;
top: 54px;
left: calc(100% - 220px);
height: calc(100% - 84px);
width: 215px;
}
#main-connect-button, #main-send-chat-button {
width: 215px;
}
#main-send-chat {
position: absolute;
top: calc(100% - 26px);
left: 3px;
height: 21px;
width: calc(100% - 227px);
}
#main-send-chat-button {
position: absolute;
top: calc(100% - 26px);
left: calc(100% - 220px);
height: 21px;
}
#main-apikey {
position: absolute;
top: 3px;
left: 3px;
height: 20px;
width: calc(100% - 227px);
}
#main-connect-button {
position: absolute;
top: 3px;
left: calc(100% - 220px);
height: 20px;
}
#main-channel-title {
text-align: center;
color: white;
}