-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
117 lines (110 loc) · 1.77 KB
/
Copy pathmain.css
File metadata and controls
117 lines (110 loc) · 1.77 KB
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
body {
font-family: monospace;
}
h1{
font-size: 72px;
text-align: center;
padding: 0;
margin: 0;
}
#row{
padding: 0;
margin: 0;
font-size: 0;
}
.wrapper{
width: 250%;
height: 250%;
text-align: center;
vertical-align: middle;
}
.header{
font-size: 72px;
text-align: center;
padding: 0;
margin: 0;
}
img {
white-space: nowrap;
padding: 0;
margin: 0;
font-size: 0;
}
button {
cursor: pointer;
font-size:0px;
padding: 0;
margin: 0;
border: none;
}
h2 {
font-size: 64px;
padding: 0;
margin: 0;
}
p {
font-size: 56px;
padding: 0;
margin: 0;
}
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.popup .overlay{
background: rgba(0, 0, 0, 0.7);
height: 100vh;
width: 100vw;
position: fixed;
left: 0px;
top: 0px;
z-index: 1;
display: none;
}
.popup .content{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0);
background: #fff;
width: 1000px;
height: 800px;
z-index: 2;
padding: 10px;
box-sizing: border-box;
border-radius: 4px;
}
.popup .close-btn{
position: absolute;
right: 50px;
top:-80px;
width: 90px;
height: 90px;
background: #222;
color: #fff;
font-size: 85px;
font-weight: 600;
line-height: 90px;
text-align: center;
border-radius: 50%;
cursor: pointer;
}
.popup.active .overlay {
display: block;
}
.popup.active .content {
transition: all 300ms ease-in-out;
transform: translate(-50%, -50%) scale(1);
}