-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (83 loc) · 1.74 KB
/
style.css
File metadata and controls
95 lines (83 loc) · 1.74 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
.container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.img-profile {
width: 100px;
height: 100px;
border-radius: 50px;
margin-top: 40px;
}
.name-profile {
color: #1b1c1e;
font-size: 18;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-style: normal;
}
.bio-profile {
color: #1b1c1e;
font-size: 12;
margin-top: -15px;
}
.container-magazine {
display: flex;
justify-content: center;
align-items: center;
margin-top: -15px;
color: #1b1c1e;
font-family: Arial, Helvetica, sans-serif;
}
.box-magazine {
width: 220px;
height: 480px; /* Atur tinggi tetap */
padding: 10px;
border: 1px solid #ccc;
margin-right: 10px;
font-size: 14px;
position: relative; /* Menambahkan posisi relatif pada kotak majalah */
display: flex;
flex-direction: column;
}
.row-magazine {
display: flex;
justify-content: center;
margin-top: 30px;
margin-bottom: 30px; /* Atur jarak bagian bawah */
}
.cover {
width: 220px;
height: auto;
margin-bottom: -5px;
}
.edisi {
align-items: center;
font-size: 18px;
margin-top: 15px; /* Ubah jarak antara edisi dan atas kotak */
}
.sinopsis {
font-size: 14px;
color: #1b1c1e;
margin-top: -10px /* Ubah jarak antara sinopsis dan edisi */
}
.download-link {
position: absolute;
bottom: 10px;
left: 10px;
background-color: #1e0063;
color: white;
padding: 8px 16px;
text-decoration: none;
border-radius: 4px;
}
.download-link:hover {
background-color: #e9c217;
}
.footer {
background-color: #cfcfcf;
padding: 10px;
text-align: center;
margin-top: 40px;
font-size: 14px;
}