-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathindex.css
116 lines (98 loc) · 1.8 KB
/
index.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
.titlebar {
padding: 0 3px;
background-color: #f6f6f6;
}
.titlebar.webkit-draggable {
-webkit-app-region: drag;
}
.titlebar-stoplight {
float: left;
text-align: left;
}
.titlebar:after,
.titlebar-stoplight:after {
content: ' ';
display: table;
clear: both;
}
.titlebar-stoplight:hover svg,
.titlebar-stoplight:hover svg.fullscreen-svg,
.titlebar-stoplight:hover svg.maximize-svg {
opacity: 1;
}
.titlebar.alt svg.fullscreen-svg {
display: none;
}
.titlebar.alt svg.maximize-svg {
display: block;
}
.titlebar-close,
.titlebar-minimize,
.titlebar-fullscreen {
float: left;
width: 10px;
height: 10px;
border-radius: 50%;
margin: 6px 4px;
line-height: 0;
}
.titlebar.webkit-draggable .titlebar-close,
.titlebar.webkit-draggable .titlebar-minimize,
.titlebar.webkit-draggable .titlebar-fullscreen {
-webkit-app-region: no-drag;
}
.titlebar-close {
border: 1px solid #e2463f;
background-color: #ff5f57;
margin-left: 6px;
}
.titlebar-close:active {
border-color: #ad3934;
background-color: #bf4943;
}
.titlebar-close svg {
width: 6px;
height: 6px;
margin-top: 2px;
margin-left: 2px;
opacity: 0;
}
.titlebar-minimize {
border: 1px solid #e1a116;
background-color: #ffbd2e;
}
.titlebar-minimize:active {
border-color: #ad7d15;
background-color: #bf9123;
}
.titlebar-minimize svg {
width: 8px;
height: 8px;
margin-top: 1px;
margin-left: 1px;
opacity: 0;
}
.titlebar-fullscreen,
.titlebar-maximize {
border: 1px solid #12ac28;
background-color: #28c940;
}
.titlebar-fullscreen:active {
border-color: #128622;
background-color: #1f9a31;
}
.titlebar-fullscreen svg.fullscreen-svg {
width: 6px;
height: 6px;
margin-top: 2px;
margin-left: 2px;
opacity: 0;
}
.titlebar-fullscreen svg.maximize-svg {
width: 8px;
height: 8px;
margin-top: 1px;
margin-left: 1px;
opacity: 0;
display: none;
}