-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmainWindowStyle.css
82 lines (72 loc) · 1.3 KB
/
mainWindowStyle.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
body,html
{
width:100%;height:100%;
overflow:hidden;
}
*
{
margin:0;padding:0;
}
#title-bar
{
-webkit-user-select: none;
cursor: arrow;
position:absolute;
z-index:99;
width:100%;
height:23px;
}
#title-bar:hover
{
background:rgba(200,200,200, 0.05);
}
#window-btns
{
position: absolute;
right:0;
width:82px;
overflow: hidden;
}
#title-text
{
-webkit-app-region: drag;
-webkit-user-select: none;
font-family: sans-serif;
position: absolute;
top:0;
text-align: center;
width: 900px;
height: 100%;
font-size:12px;
line-height: 23px;
color:rgba(255,255,255,0.8);
opacity: 0.5;
}
#title-text:hover
{
opacity: 1;
}
#window-btns > li
{
opacity: 0.8;
width:33%;
box-sizing:border-box;
font-family: sans-serif;
display: block;
float:right;
padding:4.75px 8px;
margin:0;
font-size: 12px;
line-height: 100%;
color:white;
-webkit-user-select: none;
cursor: default;
}
#window-btns > li:hover
{
opacity: 1;
}
#webView
{
width:100%;height:100%;position:absolute;
}