-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (84 loc) · 1.49 KB
/
styles.css
File metadata and controls
99 lines (84 loc) · 1.49 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
body {
margin: 10%;
padding: 10px;
background-color: rgb(255, 225, 230);
color: rgb(114, 0, 63);
font-family: Verdana;
}
nav, nav a, nav ul {
display: inline-flex;
color: white;
background: rgb(114, 0, 63);
padding: 10px;
margin: 0;
font-size: 20px;
text-decoration: none;
letter-spacing: 2px;
list-style-type: none;
justify-content: center;
width: 90%;
height: fit-content;
display: flex;
justify-content: space-around;
}
h1 {
font-size: 25px;
}
p {
font-size: 15px;
}
.step {
display: none;
}
#list {
list-style-type: none;
padding-left: 0;
}
#interactive, #interactive-btn {
background-color: transparent;
display: flex;
border: none;
padding: 0;
cursor: pointer;
justify-content: center;
align-items: center;
transition: transform 0.3s ease, filter 0.3s ease;
transform-origin: center;
position: absolute;
z-index: -3;
}
#interactive-btn img {
width: 300px;
height: auto;
display: block;
}
/* IMAGE GRID */
#image-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
justify-items: center;
}
#image-grid img {
transition: transform 0.3s ease;
}
#expanded-image {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 90%;
max-height: 90%;
display: none;
z-index: 1000;
}
#overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: none;
z-index: 5;
}