-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (59 loc) · 985 Bytes
/
style.css
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
/* CSS Flexbox Layout */
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
header {
background-color: #3498db;
color: white;
text-align: center;
padding: 20px;
}
nav ul {
display: flex;
justify-content: center;
background-color: #19c2e8;
list-style-type: none;
padding: 0;
}
nav li {
margin: 10px;
}
#content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px;
}
article {
flex: 2;
margin-right: 20px;
}
aside {
flex: 1;
margin-left: 20px;
}
section {
margin: 20px 0;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
}
/* CSS untuk Flexbox */
.ContactMe {
background-color: #19c2e8,;
list-style-type: none;
padding: 0;
display: flex;
flex-direction: column;
}
.ContactMe li {
display: flex;
align-items: center;
margin-bottom: 10px;
}