-
Notifications
You must be signed in to change notification settings - Fork 0
/
tunneler.css
121 lines (104 loc) · 2.06 KB
/
tunneler.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
body {
background: linear-gradient(90deg, #161122 4px, transparent 1%) center, linear-gradient(#161122 4px, transparent 1%) center, #a799cc;
background-size: 5px 5px;
overflow: hidden;
}
.tun-client-view, .tun-e-bar, .tun-s-bar {
margin: 10px;
image-rendering: pixelated;
}
.tun-container, .tun-e-bar, .tun-s-bar, .tun-chat, .tun-chat-input, .tun-chat-send {
border-style: solid;
border-width: 10px;
border-top-color: #aaaaaa;
border-left-color: #aaaaaa;
border-right-color: #444444;
border-bottom-color: #444444;
background: #888888;
}
.tun-container {
margin: 10px;
margin-top: 0px;
padding: 10px;
min-width: 260px;
position: relative;
}
.tun-s-symbol, .tun-e-symbol, .tun-chat-symbol, .tun-e-bar, .tun-s-bar, .tun-chat-input, .tun-chat-send {
position: absolute;
}
.tun-s-symbol, .tun-e-symbol, .tun-chat-symbol {
margin: 10px;
image-rendering: pixelated;
}
.tun-e-symbol {
top: 10px;
left: 0px;
}
.tun-s-symbol {
top: 60px;
left: 0px;
}
.tun-chat-symbol {
top: 110px;
left: 0px;
}
.tun-e-bar {
top: 0px;
left: 30px;
}
.tun-s-bar {
top: 50px;
left: 30px;
}
.tun-chat-input {
top: 110px;
left: 40px;
color: #ffffff;
background: #333333;
font-family: "Lucida Console", sans-serif;
font-weight: bold;
width: 176px;
float: right;
}
.tun-chat-send {
top: 110px;
left: 240px;
color: #ffffff;
width: 60px;
float: right;
}
.tun-chat {
margin-left: auto;
margin-right: 0;
vertical-align: top;
overflow-y: auto;
font-family: "Lucida Console", sans-serif;
font-weight: bold;
font-size: small;
color: #ffffff;
background: #333333;
}
@media screen and (max-width: 600px) {
.tun-container {
height: 200px;
}
.tun-chat {
position: absolute;
top: 160px;
left: 10px;
width: 270px;
height: 30px;
}
}
@media screen and (min-width: 601px) {
.tun-container {
height: 140px;
}
.tun-chat {
position: relative;
width: -webkit-calc(100% - 320px);
width: -moz-calc(100% - 320px);
width: calc(100% - 320px);
height: 120px;
}
}