-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (81 loc) · 1.36 KB
/
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
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
* {
padding: 0;
margin: 0;
font-family: sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
.container {
width: 80%;
margin: 0 auto;
}
.container:after {
content: '';
display: block;
clear: both;
}
header h1 {
float: left;
padding: 15px 0;
color: #d3a4ff;
}
/* Tombol Beranda dkk */
body {
margin: 0;
}
header ul {
list-style: none;
padding: 0;
margin: 0;
}
header ul li {
float: right;
}
header ul li a {
padding: 27px;
display: inline-block;
}
header ul li a:hover {
background-color: #d3a4ff;
color: #fff;
}
.active {
background-color: #c993ff;
color: #fff;
}
.banner {
height: 60vh;
background-image: url('../img/Image1.jpg');
background-size: cover;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.banner:after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(211, 164, 255, .6);
}
.banner h2 {
color: #fff;
z-index: 1;
padding: 20px 25px;
border: 3px solid #fff;
}
section {
padding: 50px 0;
}
section h3 {
text-align: center;
padding: 20px 0;
color: #d3a4ff;
margin-bottom: 25px;
}