-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (60 loc) · 1.03 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
/***
*
* @Name : CustomWindowsFormElectron/2-WithToolbar/style.css
* @Version : 1.0
* @Programmer : Max
* @Date : 2019-05-23
* @Released under : https://github.com/BaseMax/CustomWindowsFormElectron/blob/master/LICENSE
* @Repository : https://github.com/BaseMax/CustomWindowsFormElectron
*
**/
* {
padding: 0px;
margin: 0px;
}
body {
border: 2px solid green;
padding: 8px;
}
#toolbar {
float: right;
width: 100%;
height: 45px;
background: white;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
#toolbar-menus {
float: right;
}
#toolbar-menus #toolbar-exit {
cursor: pointer;
float: right;
width: 15px;
height: 15px;
background: red;
margin-left: 5px;
}
#toolbar-menus #toolbar-max {
cursor: pointer;
float: right;
width: 15px;
height: 15px;
background: blue;
margin-left: 5px;
}
#toolbar-menus #toolbar-min {
cursor: pointer;
float: right;
width: 15px;
height: 15px;
background: orange;
}
#toolbar-title {
text-align: center;
}
#toolbar-title p {
position: absolute;
font-weight: bold;
font-size: 12px;
}