-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (55 loc) · 1.02 KB
/
Copy pathstyle.css
File metadata and controls
63 lines (55 loc) · 1.02 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
body {
margin: 0;
background: rgb(188, 218, 213, 1);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
flex-wrap: wrap;
gap: 20px;
padding: 20px 20px 20px 20px;
color: #4b526a;
}
.photo {
max-width: 50%;
height: auto;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 5px 15px #9493b3;
transition: transform 0.3s;
}
.photo:hover {
transform: scale(1.05);
cursor: pointer;
}
.caption {
text-align: center;
margin-top: 10px;
font-size: 16px;
color: #57755c;
}
figure {
margin: 0;
text-align: center;
}
:lang(zh) {
font-family: "KaiTi", "STKaiti", "Microsoft YaHei", Arial, sans-serif;
}
:lang(en) {
font-family: "Georgia", "Times New Roman", Arial, serif;
}
.indent {
text-indent: 2em;
}
footer {
width: 100%;
text-align: center;
padding: 15px 0;
background-color: #bcdad5;
color: #d56709;
font-size: 14px;
/* position: fixed; */
bottom: 0;
left: 0;
}