-
Notifications
You must be signed in to change notification settings - Fork 18
/
style.css
94 lines (79 loc) · 2.49 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
/* Copyright (c) 2015, Amperka LLC
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE.txt file for details.
*/
body {
position: relative;
}
#wrap {
text-align: center;
height: 100vh;
line-height: 100vh;
}
h1 {
text-align: center;
display: inline-block;
vertical-align: middle;
line-height: normal;
}
#menu {
position: absolute;
font-size: 24px;
right: 10px;
bottom: 10px;
color: #333;
}
#menu .btn {
display: inline-block;
margin-left: 10px;
width: 32px;
height: 32px;
opacity: 0.1;
}
#menu .btn:hover {
cursor: pointer;
opacity: 0.5;
}
#menu .btn-fullscreen { background-image: url('chrome-extension://__MSG_@@extension_id__/img/desktop_000000_32.png'); }
#menu .btn-connection { background-image: url('chrome-extension://__MSG_@@extension_id__/img/chain-broken_000000_32.png'); }
#menu .btn-connection.connected { background-image: url('chrome-extension://__MSG_@@extension_id__/img/link_000000_32.png'); }
#menu .btn-settings { background-image: url('chrome-extension://__MSG_@@extension_id__/img/cog_000000_32.png'); }
#menu .btn-about { background-image: url('chrome-extension://__MSG_@@extension_id__/img/amperka_000000_32.png'); }
#menu.light .btn-fullscreen { background-image: url('chrome-extension://__MSG_@@extension_id__/img/desktop_ffffff_32.png'); }
#menu.light .btn-connection { background-image: url('chrome-extension://__MSG_@@extension_id__/img/chain-broken_ffffff_32.png'); }
#menu.light .btn-connection.connected { background-image: url('chrome-extension://__MSG_@@extension_id__/img/link_ffffff_32.png'); }
#menu.light .btn-settings { background-image: url('chrome-extension://__MSG_@@extension_id__/img/cog_ffffff_32.png'); }
#menu.light .btn-about { background-image: url('chrome-extension://__MSG_@@extension_id__/img/amperka_ffffff_32.png'); }
.popup {
display: none;
position: absolute;
padding: 10px;
bottom: 64px;
right: 10px;
background-color: white;
font-size: 15px;
border: 2px solid black;
border-radius: 10px;
}
#about {
width: 250px;
}
table.form input {
padding: 3px;
border: 1px solid #999;
border-radius: 3px;
font-size: 15px;
}
table.form table {
width: 100%;
}
table.form th,
table.form td {
padding: 5px 3px;
}
table.form th {
text-align: left;
white-space: nowrap;
font-weight: normal;
}