forked from ZachSaucier/Just-Read
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.css
56 lines (43 loc) · 1.14 KB
/
page.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
.simple-no-scroll,
.simple-no-scroll * {
overflow: hidden !important;
}
#simple-article#simple-article {
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
max-width: 100%;
min-width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: white;
border: none;
overflow: auto;
z-index: 9999999999;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-transition: .5s;
transition: .5s;
opacity: 1;
}
#simple-article#simple-article.simple-fade-up {
-webkit-transform: translateY(100px);
transform: translateY(100px);
-webkit-transition: .3s
transition: .3s;
opacity: 0;
}
.no-trans { -webkit-transition: none !important; transition: none !important; }
.dg { z-index: 99999999999 !important; height: auto !important; }
.simple-no-scroll .dg { overflow: visible !important; }
.dg .cr.string:not(.color) input { float: none; }
.dg.main .close-button.close-button {
bottom: -41px;
border-top: 1px solid grey;
}
.dg.main .close-button.saveAndClose { bottom: -20px; }