-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
120 lines (119 loc) · 1.91 KB
/
Copy pathstyle2.css
File metadata and controls
120 lines (119 loc) · 1.91 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.all {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
justify-content: center;
}
.header {
display: flex;
max-width: 1200px;
min-height: 96px;
padding: 20px 24px;
justify-content: space-between;
align-items: center;
border-radius: 20px;
background: black;
color: white;
gap: 20px;
flex-basis: content;
}
.header ul {
display: flex;
list-style-type: none;
gap: 20px;
}
.banner {
display: flex;
width: 100%;
padding: 12px;
justify-content: center;
align-items: center;
gap: 24px;
background-color: #f4ba30;
}
.detail {
display: inline-flex;
max-width: 1200px;
height: 530px;
padding: 24px;
flex-direction: row;
align-items: flex-start;
gap: 24px;
border-radius: 20px;
background: #2a2c2e;
}
.bookcover img {
width: 314px;
height: 476px;
flex-shrink: 0;
border-radius: 10px;
}
.bookinfo {
width: 90%;
}
.readers {
display: flex;
gap: 12px;
flex-wrap: wrap;
justify-content: center;
}
.choice {
display: flex;
padding: 16px;
flex-direction: column;
gap: 12px;
background-color: lightgray;
border-radius: 16px;
}
.choice img {
width: 161px;
height: 248px;
border-radius: 12px;
}
.comment {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
max-width: 1400px;
}
.box {
display: flex;
max-width: 596px;
padding: 16px;
flex-direction: column;
align-items: flex-start;
gap: 12px;
border-radius: 20px;
background: #2a2c2e;
}
.footer {
display: flex;
width: 100%;
min-width: 600px;
flex-direction: column;
justify-content: space-between;
background-color: black;
color: #ffffff;
}
.socmed img {
width: 24px;
height: 24px;
}
.upfoot {
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
background: #2a2c2e;
}
.downfoot {
display: flex;
justify-content: space-between;
}