-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (113 loc) · 1.87 KB
/
Copy pathstyle.css
File metadata and controls
116 lines (113 loc) · 1.87 KB
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
* {
box-sizing: border-box;
}
@font-face {
font-family: 'Open Sans';
src: url(OpenSans-Regular.ttf);
}
body {
-webkit-user-select: none;
padding: 5px;
height: 100vh;
margin: 0;
font-family: 'Open Sans', sans-serif;
color: #222;
}
.main-container {
box-shadow: 0 0 5px rgba(0,0,0,0.3);
height: 100%;
flex-direction: column;
background: rgba(255,255,255,0.8);
padding: 10px;
overflow-y: auto;
-webkit-app-region: drag;
}
header {
display: flex;
line-height: 30px;
height: 30px;
}
#close {
width: 30px;
height: 30px;
margin-right: 5px;
-webkit-app-region: no-drag;
cursor: pointer;
text-align: center;
}
#close:active {
background: rgba(0,0,0,0.3);
}
.maininfo {
font-weight: bold;
width: 100%;
display: flex;
}
.place {
color: #555;
border: none;
background: none;
font-size: inherit;
-webkit-app-region: no-drag;
outline: none;
margin-top: 3px;
margin-left: 5px;
overflow: hidden;
height: 30px;
text-align: right;
width: 50%;
-webkit-app-region: drag;
}
.body {
display: flex;
height: calc(100vh - 92px);
justify-content: center;
align-items: center;
}
#about {
font-size: 10px;
display: inline-block;
cursor: pointer;
color: #777;
-webkit-app-region: no-drag;
}
a {
-webkit-app-region: no-drag;
color: rgb(63, 80, 231);
text-decoration: none;
}
.extra-spaced {
padding: 20px;
display: block;
}
::-webkit-scrollbar {
width: 7px;
margin: 20px;
background: none;
}
::-webkit-scrollbar-thumb {
background: #aaa;
border-radius: 5px;
}
::-webkit-scrollbar-track {
width: 5px;
background: #ccc;
}
.title-nowrap {
width: 50%;
}
input[type=text], button {
padding: 10px;
border: none;
-webkit-app-region: no-drag;
outline: none;
margin: 10px;
}
button {
background: #485df0;
color: #222;
font-weight: bold;
}
#done, #installing, #error {
display: none;
}