-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
97 lines (85 loc) · 1.86 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
html, body {
font-family: "Source Han Sans CN", -apple-system, "Microsoft YaHei UI", "微软雅黑", sans-serif;
background-color: #fefefe;
width: 100%;
height: 100%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
align-items: center;
/* center in v/h */
text-align: center;
-webkit-app-region: drag;
/* let the app draggable */
}
.flower {
color: #0099cc;
}
.flowerbtn {
background-color: #0099cc;
color: #fefefe;
border: 8px solid transparent;
}
.flowerbtn:hover {
background-color: #0099ccb0;
color: #fefefe;
text-decoration: none;
}
label {
display: inline-block;
vertical-align: middle;
}
input[type="checkbox"] {
-webkit-appearance: none;
/* remove default style */
border: solid #0099cc 2px;
border-radius: 10px;
width: 12px;
height: 12px;
display: inline-block;
}
input[type="checkbox"]:checked {
background-image: url(./res/icons/check.png);
background-size: contain;
}
.form {
-webkit-appearance: none;
/* remove default style */
line-height: inherit;
margin: 0rem;
padding: 1px 0px;
outline: none;
border: none;
text-align: center;
}
.form::-webkit-input-placeholder {
color: #999999;
transition: color.5s;
text-align: center;
}
.form:focus::-webkit-input-placeholder, .form:hover::-webkit-input-placeholder {
color: #999999c2;
transition: color.5s;
}
#controller {
position: fixed;
top: 5px;
right: 8px;
font-size: 18px;
-webkit-app-region: no-drag;
/* let it clickable */
-webkit-user-select: none;
}
#versioninfo {
position: fixed;
bottom: 5px;
font-size: 6px;
-webkit-app-region: no-drag;
/* let it clickable */
-webkit-user-select: text;
}
#main {
-webkit-app-region: no-drag;
/* let it clickable */
-webkit-user-select: text;
}