-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
41 lines (33 loc) · 746 Bytes
/
styles.css
File metadata and controls
41 lines (33 loc) · 746 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
body {
font-family: Arial, sans-serif;
background-color: #222;
margin: 0;
padding: 20px;
color: white; /* warna teks menjadi putih */
}
.container {
max-width: 600px;
margin: auto;
background: #222;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
color: inherit; /* mewarisi warna dari body, yaitu putih */
}
h1 {
text-align: center;
}
h2 {
text-align: center;
}
.feed-item {
margin-bottom: 15px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
color: inherit; /* pastikan tetap putih */
}
.feed-item a {
text-decoration: none;
color: #007bff; /* warna biru untuk link */
}