-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (56 loc) · 969 Bytes
/
style.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
body {
font-family: "Montserrat", sans-serif;
}
h1 {
font-family: "Ysabeau SC", sans-serif;
font-size: 5em;
}
#content {
max-width: 800px;
margin: 0 auto;
padding: 20px;
text-align: center;
}
#photo {
max-width: 25%;
}
#description {
margin-top: 20px;
text-align: center;
}
.exit-popup {
display: none;
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 80%;
max-width: 400px;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
background-color: white;
z-index: 1001;
}
.exit-popup-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.exit-popup-close {
cursor: pointer;
font-size: 24px;
}
.exit-popup img {
max-width: 100%;
height: auto;
}
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,0.7);
z-index: 1000;
}