-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.css
More file actions
55 lines (49 loc) · 825 Bytes
/
index.css
File metadata and controls
55 lines (49 loc) · 825 Bytes
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
@import 'normalize.css';
.modal {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
display: table;
height: 100%;
width: 100%;
z-index: 9999;
}
.modal h2 {
font-size: 2em;
font-weight: 500;
padding-bottom: 10px;
margin: 15px 0;
border-bottom: 1px solid #EEE;
}
.modal-container {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.modal-content {
margin: 30px auto;
background: #FFF;
display: inline-block;
text-align: left;
padding: 0 15px;
max-width: 600px;
min-width: 100px;
line-height: 1.5em;
}
.modal-close {
padding: 0 4px;
position: absolute;
top: 10px;
right: 10px;
z-index: 100;
font-size: 2em;
font-style: normal;
cursor: pointer;
color: #FFF;
}
.modal-hide {
display: none;
}