-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles2.css
65 lines (52 loc) · 1.08 KB
/
styles2.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
/* Popup container */
.popup {
position: relative;
display: inline-block;
cursor: pointer;
}
/* The actual popup (appears on top) */
.popup .popuptext {
visibility: hidden;
opacity: 0.9;
width: 950px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
position: absolute;
left: 20%;
bottom: 125%;
}
/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
visibility: visible;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s
}
/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
from {opacity: 0;}
to {opacity: 0.9;}
}
@keyframes fadeIn {
from {opacity: 0;}
to {opacity:0.9;}
}
#ads {
text-align: center;
z-index: 99;
position:absolute;
top:35%;
left: 2%;
}
.footer5 {
font-size: 30px;
text-align: right;
padding-top: 5px;
padding-right: 5px;
}
.footer6 {
font-size: 35px;
padding-top: 5px;
padding-bottom: 7px;
}