-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (70 loc) · 1.19 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
html {
margin: 0px;
padding: 0px;
overflow: hidden;
}
body {
margin: 0px;
padding: 0px;
}
::-webkit-scrollbar-thumb {
display: none;
}
input[type="checkbox"]:disabled
{
opacity: .3;
}
div#content {
background-color: #dddddd;
margin: 0px;
padding: 0px;
}
div#inner-content {
background-color: #dddddd;
margin: 10px;
width: 100%;
height: 100%;
}
.top-titlebar {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 60px;
background-color: #7a7c7c;
-webkit-user-select: none;
-webkit-app-region: drag;
}
.top-titlebar-icon {
position: absolute;
left: 6px;
margin-top: 6px;
margin-bottom: 6px;
}
.top-titlebar-text {
position: absolute;
left: 60px;
width: 80%;
margin-top: 20px;
margin-bottom: 20px;
font-family: Arial;
font-size: 11pt;
color: #ffffff;
}
.top-titlebar-close-button {
position: absolute;
right: 11px;
width: 17px;
height: 17px;
margin-top: 6px;
margin-bottom: 6px;
-webkit-app-region: no-drag;
}
.top-titlebar-divider {
position: absolute;
left: 0px;
top: 60px;
width: 100%;
height: 1px;
background-color: #2a2c2c;
}