forked from lucthienphong1120/gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (55 loc) · 863 Bytes
/
Copy pathstyle.css
File metadata and controls
66 lines (55 loc) · 863 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
margin: 0 20px;
}
#app {
margin: 0 auto;
max-width: 1000px;
}
.title {
margin: 80px 0 10px;
font-weight: 900;
font-size: 35px;
color: #000;
}
.description {
margin-bottom: 15px;
font-size: 17px;
color: #333;
}
.note {
margin-bottom: 40px;
font-size: 14px;
font-style: italic;
color: #999;
}
#gallery {}
section {
margin-bottom: 50px;
}
.album-name {
margin-bottom: 20px;
color: #666;
font-size: 20px;
font-weight: 400;
letter-spacing: 2px;
}
.album-content {
display: flex;
flex-wrap: wrap;
margin: 0 -5px;
}
.album-photo {
margin: 5px;
}
.photo {
border: 1px solid rgba(0, 0, 0, .05);
width: 242.5px;
height: 173.145px;
object-fit: cover;
object-position: top;
}