-
Notifications
You must be signed in to change notification settings - Fork 4
/
content.css
77 lines (74 loc) · 1.54 KB
/
content.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
button.jsh-modal-toggle {
border: none;
border-radius: 3px;
width: 40px;
height: 40px;
margin: 80px 10px 10px;
padding: 0;
background-color: white;
/* background-image: url('icons/icon.svg'); */
box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
cursor: pointer;
pointer-events: auto;
}
.jsh-modal {
display: none;
}
.jsh-modal.active {
display: block;
position: fixed;
z-index: 200;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.75);
}
.jsh-modal-dialog {
background: white;
border-radius: 4px;
box-shadow: 0 0 5px 5px rgba(0,0,0,0.2);
max-width: 600px;
margin: 200px auto;
padding: 20px;
}
.jsh-modal-dialog code {
background-color: lightgray;
border-radius: 3px;
padding: 10px 50px 10px 10px;
display: block;
position: relative;
margin-bottom: 7px;
}
.jsh-modal-dialog pre {
margin: 0;
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-all;
}
.jsh-modal-dialog .copy-button {
position: absolute;
right: 8px;
top: 8px;
background-color: transparent;
}
.jsh-modal-dialog > .modal-header {
margin-top: 0px;
}
.jsh-modal-dialog a.btn {
margin-right: 4px;
padding: 10px 20px;
line-height: 2;
border: 1px solid #E7E7E7;
border-radius: 5px;
color: #000;
font-weight: bold;
}
.jsh-modal-dialog a.btn:visited {
color: #000;
}
.jsh-modal-dialog a.btn:hover {
background-color: #F0F0F0;
text-decoration: none;
}
.jsh-modal-dialog .btn.active {
background-color: #f0f0f5;
}