This repository was archived by the owner on May 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
102 lines (93 loc) · 1.82 KB
/
main.css
File metadata and controls
102 lines (93 loc) · 1.82 KB
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
/* general */
html {
background: #1a1d21;
color: #eee;
font-family: "Open Sans", "Noto Sans", sans;
overflow: hidden;
}
body {
margin: 0;
padding: 5px;
}
button {
background-color: #0a487a;
border: none;
border-radius: 3px;
color: #eee;
font-size: 16px;
padding: 5px 8px;
margin: 5px;
}
input, textarea {
border: 1px dotted #aaa;
border-radius: 4px;
background-color: #444;
color: #bbb;
font-size: 14px;
padding: 4px;
margin: 5px;
}
textarea {
height: 10em;
width: 50em;
}
button.back, button.forward, button.config, button.minimize, button.maximize, button.close {
background: none;
border: none;
border-radius: 4px;
height: 32px;
outline: none;
position: fixed;
top: 5px;
width: 32px;
-webkit-app-region: no-drag;
}
button.back:hover, button.forward:hover, button.config:hover, button.minimize:hover, button.maximize:hover, button.close:hover {
background: #36373899;
}
button.back svg, button.forward svg, button.minimize svg, button.maximize svg, button.close svg {
height: 100%;
stroke: #666;
width: 100%;
}
button.back svg, button.forward svg, button.config svg {
fill: #666;
height: 100%;
width: 100%;
}
button.back:hover svg, button.forward:hover svg, button.minimize:hover svg,
button.maximize:hover svg, button.close:hover svg {
stroke: #AAA;
}
button.back:hover svg, button.forward:hover svg, button.config:hover svg {
fill: #AAA;
}
button.back {
right: 190px;
}
button.forward {
right: 153px;
}
button.config {
right: 116px;
}
button.minimize {
right: 79px;
}
button.maximize {
right: 42px;
}
button.close {
right: 5px;
}
div.header-bg {
background-color: transparent;
content: ' ';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 42px;
-webkit-app-region: drag;
z-index: -1;
}