-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathdonation.css
118 lines (101 loc) · 1.9 KB
/
donation.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
.modal {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 990;
}
.modal .overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 995;
background: rgba(0,0,0,0.85);
}
.modal .modal_content {
z-index: 999;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
/*max-height: 90%;*/
overflow: auto;
background: rgb(92, 4, 221);
padding: 20px;
box-shadow: 0 1px 5px rgba(0,0,0,0.7);
text-align: center;
border-radius: 4px;
width: 520px; /* This just a default width */
}
.modal .modal_content > h2 {
font-size: 28px;
font-weight: 200;
margin: 20px 0 40px;
text-align: center;
}
.modal_content img {
width: 100%;
}
.modal_content {
display: flex;
justify-content: space-between;
}
.modalImage {
border-right: 1px solid #FFF;
padding-right: 1.5em;
}
.modal .modal_content .buttons_wrapper {
padding: 20px;
}
.modal .close_modal {
position: absolute;
right: 10px;
top: 10px;
cursor: pointer;
font-size: 18px;
opacity: 0.5;
background: none;
border: none;
transition: opacity 0.2s ease;
color: #FFF;
}
.modal .close_modal:hover {
opacity: 0.9;
}
#header-xx {
padding-bottom: 20px;
padding-top: 20px;
}
#signup-btn {
background-color: lightgrey;
}
#signup-btn:hover {
background-color: rgb(239, 239, 239);
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
#uptopro-card {
padding-top: 21px;
margin-top: 21px;
}
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
#uptopro-card {
padding-top: 21px;
margin-top: 21px;
}
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
#uptopro-card {
padding-top: 21px;
margin-top: 21px;
}
}
/* Large devices (desktops, less than 1200px) */
/* @media (max-width: 1199.98px) {
} */