-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpopup.css
More file actions
44 lines (39 loc) · 721 Bytes
/
Copy pathpopup.css
File metadata and controls
44 lines (39 loc) · 721 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
.popup {
display: none;
position: fixed;
z-index: 1;
padding-top: 150px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.4);
}
.popup-tweet {
background-color: #fefefe;
margin: auto;
padding:20px;
border: 1px solid #888;
width: 80%;
}
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.popup-save{
background-color: #fefefe;
margin:auto;
margin-top: 10px;
padding: 10px 30px;
border: 1px solid #888;
width: 60%;
}