-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (87 loc) · 1.63 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
97
98
99
100
101
102
103
104
105
106
107
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
text-align: center;
background-color: #eeeeee;
}
.container {
max-width: 1920px;
margin: 0 auto;
}
.its-hidden {
display: none;
}
.search-form {
display: flex;
max-width: 500px;
margin: 0 auto 20px auto;
}
input[type='text'] {
margin-right: 20px;
border-radius: 10px;
border: 1px solid #4976ff;
flex: 1;
padding: 8px;
outline: transparent;
}
.input_style {
background-color: #c7cfe9;
border-radius: 20px;
}
button {
padding: 8px 16px;
background-color: #4976ff;
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
}
button:hover {
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.29);
}
button:active {
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.29);
}
.load-more {
margin: 20px auto 20px auto;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 10px;
}
.photo-card {
border-radius: 10px;
padding: 10px 10px 40px 10px;
background-color: #ffffff;
transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.photo-card:focus,
.photo-card:hover {
transform: scale(105%);
}
.photo-card img {
object-fit: cover;
width: 100%;
height: 100%;
}
.info {
font-size: 12px;
color: #2949aa;
display: flex;
justify-content: space-between;
}
.info-item {
margin: 0;
}
.simple-lightbox .sl-overlay {
background: #000;
}
.simple-lightbox .sl-close {
color: #1927ed;
}
.simple-lightbox .sl-counter {}
.simple-lightbox .sl-navigation button {
color: #1927ed;
}