-
Notifications
You must be signed in to change notification settings - Fork 0
/
cat1style.css
77 lines (64 loc) · 1.1 KB
/
cat1style.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
h3{
text-align: left;
}
.gallery {
margin: 2vh;
border: 1px solid #ccc;
width: 400px;
min-width: 400px;
border-radius: 10px;
}
.gallery:hover {
border: 2px solid #777
}
.gallery img {
border-radius: 10px 10px 0px 0px;
object-fit: cover;
object-position: center;
width: 100%;
}
.desc {
padding: 10%;
text-align: left;
}
.galleryelements {
margin-top: 2vh;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.windowback {
display: none;
position: fixed;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
justify-content: center;
align-items: center;
padding-top: 3%;
padding-bottom: 3%;
}
.wendow {
background-color: white;
margin: auto;
padding: 5%;
margin-left: 10rem;
margin-right: 10rem;
}
.close img{
height: 100px;
float: right;
}
.close:hover{
cursor: pointer;
}
@media screen and (max-width: 1300px){
.galleryelements{
flex-direction: column;
}
}