-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (84 loc) · 1.3 KB
/
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
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
*{
box-sizing: border-box;
scroll-behavior: smooth;
}
.row {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.column {
display: flex;
/* width: 20%; */
justify-content: center;
align-items: center;
height: 200px;
bottom: 10px solid red;
flex-wrap: wrap;
}
.column img {
border-radius: 2px;
transition: 0.5s;
cursor: pointer;
margin: 20px 12px;
}
.column img:hover {
box-shadow: 0px 0px 12px violet;
transform: scale(1.05);
}
/* Big Image Section */
.modal {
display: none;
transform: scale(0);
position: fixed;
z-index: 1;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: black;
transition: 2s;
}
.modal-content {
margin-left: 22%;
background-color: wheat;
width: 50%;
}
.mySlides
{
display: none;
}
.close {
color: white;
position: absolute;
top: 10px;
right: 25px;
font-size: 35px;
font-weight: bold;
transition: 0.2s;
}
.close:hover,
.close:focus {
color: #999;
text-decoration: none;
cursor: pointer;
}
/* Next previous Btn */
.prev,
.next {
cursor: pointer;
position: absolute;
top: 50%;
color: violet;
font-size: 2rem;
}
.next{
right: 28%;
}
.prev:hover,
.next:hover{
box-shadow: 0 0 120px rgba(1, 2, 3, 4);
border: 1px solid green;
}