-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallerystyle.css
53 lines (52 loc) · 1021 Bytes
/
gallerystyle.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #003200e7;
/* background: radial-gradient(red ,white ,green); */
}
a{
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
.banner{
background:linear-gradient(to right , #156ae0e5 ,#2187ba88 ,#156ae0ee);
backdrop-filter: blur(10px);
padding-block: 15px;
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
position: fixed;
left: 0;
right: 0;
top: 0;
}
.circle{
border-radius: 100%;
}
.flex{
display: flex;
justify-content: center;
align-items: center;
}
.gallery{
margin-top: 50px;
padding: 30px;
display: grid;
grid-template-columns: repeat(4 ,1fr);
gap: 20px;
justify-content: center;
}
.gallery div{
overflow: hidden;
}
img{
/* width: 200px !important; */
width: 100%;
height: 200px;
box-shadow: 0px 0px 5px black;
width: auto;
}