-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (82 loc) · 1.33 KB
/
Copy pathstyle.css
File metadata and controls
95 lines (82 loc) · 1.33 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
* {
font-family: noto sans, Arial, sans-serif;
font-size:12pt;
}
body {
background-color: #f3f4f7;
margin: 0px;
}
.content {
width: 600px;
margin: 0 auto;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
padding: 25px;
background-color: #fff;
}
label {
position: absolute;
margin-left: -8em;
margin-top:0.25em;
}
textarea, input {
width:80%;
}
/* The button to trigger the popup */
#charPopupButton {
float: right;
font-size: 28px;
font-weight: bold;
}
/* The popup */
.charPopup {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0); /* Fallback */
background-color: rgba(0,0,0,0.4);
animation-name: fadeIn;
animation-duration: 0.2s;
}
.charPopup-content {
position: fixed;
top: 0;
background-color: #fefefe;
width: 100%;
animation-name: slideIn;
animation-duration: 0.2s;
}
.charPopup-body {
padding: 2px 16px;
}
.closePopup {
color: gray;
float: right;
font-size: 36px;
font-weight: bold;
}
.closePopup:hover,
.closePopup:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.charButton {
padding: 2px 16px;
font-size:32pt;
font-weight:bold;
margin-bottom:2px;
}
/* Animation */
@keyframes slideIn {
from {top: -300px; opacity: 0}
to {top: 0; opacity: 1}
}
@keyframes fadeIn {
from {opacity: 0}
to {opacity: 1}
}