-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
118 lines (111 loc) · 2.24 KB
/
styles.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
*{
margin: 0;
padding: 0;
font-family: Verdana;
}
.header10{
background-color: #f0f0f0;
display: flex;
padding-top: 3rem;
flex-direction: row;
align-items: center;
}
.gambar{
margin: 20px 0px 20px 130px;
flex: 1;
overflow: hidden;
}
.col{
flex: 1.25;
}
.header{
margin-bottom: 30px;
margin-right: 30px;
display: flex;
}
.raw{
background-color: white;
margin:20px 140px 20px 0px;
padding: 20px;
border-radius: 5px;
height: 40px;
}
.raw p{
margin: 5px;
font-size: 20px;
font-family: Oswald;
}
/* footer */
.footer {
display: flex;
justify-content: space-between;
margin-top: 40px;
padding: 20px ;
border-top: 1px solid #ddd;
}
.footer-logo img {
max-width: 100px;
}
.footer-links {
display: flex;
margin: 10px;
}
.link-column h4 {
margin-bottom: 10px;
margin: 5px 5px;
}
.link-column ul {
list-style: none;
padding: 0;
margin: 5px 5px;
}
.link-column li {
margin-bottom: 5px;
padding:5px 5px;
}
.footer-social .social-icons a {
margin: 0 5px;
font-size: 20px;
}
/* button bpx */
/* Styling untuk container utama */
.info-container {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #2c2c2c; /* Warna latar belakang gelap */
color: white; /* Warna teks */
padding: 20px;
border-radius: 8px; /* Sudut melengkung */
box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1); /* Efek bayangan */
font-family: 'Arial', sans-serif;
margin: 0px 120px;
}
/* Styling untuk teks */
.info-text h2 {
font-size: 1.5em;
margin: 0;
}
.info-text p {
font-size: 1em;
margin: 5px 0 0;
opacity: 0.8; /* Teks deskripsi lebih samar */
}
/* Styling untuk tombol */
.info-button {
background-color: #ffffff; /* Warna putih */
color: #2c2c2c; /* Warna teks hitam */
border: none;
padding: 10px 20px;
font-size: 1em;
font-weight: bold;
cursor: pointer;
border-radius: 4px; /* Sudut melengkung */
transition: all 0.3s ease; /* Animasi halus */
}
/* Efek hover pada tombol */
.info-button:hover {
background-color: #f0f0f0;
color: #000;
transform: scale(1.05); /* Sedikit membesar */
}