-
Notifications
You must be signed in to change notification settings - Fork 0
/
donate.css
79 lines (74 loc) · 1.62 KB
/
donate.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
78
79
#donate-author-post p{
margin:0;
}
#donate-author-post__wrapper {
position: fixed;
left:0;
top: 0px;
width: 100%;
height: 100%;
background-color: black;
z-index:1001;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-content: stretch;
-ms-flex-line-pack: stretch;
align-content: stretch;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
#donate-author-post {
margin-top:30px;
position:relative;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-content: stretch;
-ms-flex-line-pack: stretch;
align-content: stretch;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
overflow:auto;
max-height:95%;
}
#donate-author-post div{
width:360px;
height:400px;
background:#fff;
padding:1rem;
}
#donate-author-post p{
text-align:center;
font-size:2rem;
font-weight:800;
}
.dap-close{
position:absolute;
right:0;
top:0;
margin: 1px;
border-radius: 50%;
display:inline-block;
width:25px;
height:25px;
cursor:pointer;
background-color:white;
}