-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (39 loc) · 854 Bytes
/
style.css
File metadata and controls
47 lines (39 loc) · 854 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
body{
background-color: #d4e3ec;
}
.popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
height: 650px;
background-color: #fff;
border: 1px solid #ccc;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
z-index: 9999;
text-align: center;
border-radius: 10px;
}
.popup-content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
.popup-image {
max-width: 80%;
max-height: 80%;
border-radius: 20px;
margin-top: -20%;
}
.popup-title {
margin-top: 30px;
font-family: 'Hanken Grotesk', sans-serif;
}
.popup-description {
margin-top: 20px;
color: #999999;
font-style: italic;
}