This repository has been archived by the owner on May 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WBB_Konami_Game.css
54 lines (47 loc) · 1.59 KB
/
WBB_Konami_Game.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
.kon-popup {
background: rgba(100, 100, 100, 0.6);
position: fixed;
display: none;
z-index: 5000;
height: 100%;
width: 100%;
left: 0;
top: 0;
}
.kon-popup p {
color: #000;
margin: 0;
font-size: .7em;
}
.kon-popup > div {
border-radius: 10px;
position: fixed;
background: #FFF;
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
padding: 30px 15px;
width: 680px;
z-index: 99991;
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
left: 50%;
top: 50%;
text-align: center;
border: 5px solid #F04646;
}
.kon-close {
background: #49A357;
border: 0;
border-radius: 4px;
padding: 7px 15px;
font-size: 16px;
color: #FFF;
cursor: pointer;
}
.kon-close:focus { outline: none; }
.kon-close:hover {
background: #7FE88F;
color: #000;
}
/* --- EOF --- */