-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.css
71 lines (61 loc) · 1 KB
/
help.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
* {
margin: 0;
padding: 0;
user-select: none;
-webkit-user-select: none;
-webkit-user-drag: none;
}
html, body {
display: flex;
flex-direction: column;
height: 100%;
color: white;
text-align: center;
font-family: 'Segoe UI';
font-size: 1em;
}
.title-bar {
flex-grow: 0;
flex-shrink: 0;
display: flex;
flex-direction: row-reverse;
justify-content: flex-start;
align-items: baseline;
background: #353535;
-webkit-app-region: drag;
}
#title {
flex-basis: 100%;
padding: 5px 16px;
font-size: 90%;
text-align: left;
}
.win-option {
color: white;
padding: 5px 16px;
font-size: 15px;
cursor: default;
-webkit-app-region: no-drag;
}
.win-option:hover {
background: #4b4b4b;
}
.win-option#close:hover {
background: red;
}
.content{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 20px;
}
#video {
width: 95%;
margin-bottom: 30px;
}
.text {
width: 85%;
text-align: justify;
margin: 5px;
}