-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
115 lines (97 loc) · 2.03 KB
/
Copy pathstyles.css
File metadata and controls
115 lines (97 loc) · 2.03 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* about */
.container {
background-color: black;
margin: 0;
border-radius: 0;
padding: 200px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.row {
display: flex;
flex-wrap: wrap;
}
.col-md-6 {
flex: 0 0 50%;
max-width: 50%;
padding: 15px;
}
.img-box img {
max-width: 100%;
height: auto;
text-align: left;
}
.detail-box {
padding-left: 20px;
text-align: right;
}
.detail-box a {
text-decoration: none;
}
.heading_container h2 {
font-size: 28px;
color: whitesmoke;
margin-top: 0;
}
p {
font-size: 16px;
line-height: 1.6;
color: white;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.read-more-button {
background-color: #FFD700;
color: #000;
border: none;
border-radius: 20px;
padding: 15px 30px;
cursor: pointer;
}
.read-more-button:hover {
background-color: #FFFF00;
}
/* book-table */
.book_section layout_padding {
background-color: #fff;
padding: 50px 0;
}
.book_section .heading_container h2 {
font-size: 28px;
font-weight: bold;
}
.book_section .form_container {
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.book_section .form_container input[type="text"],
.book_section .form_container input[type="email"],
.book_section .form_container select {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
.form-control {
width: 150px; /* Atur lebar sesuai kebutuhan */
height: 30px; /* Atur tinggi sesuai kebutuhan */
}
.book_section .form_container button {
background-color: #FFD700;
color: #000;
border: none;
border-radius: 20px;
padding: 15px 30px;
cursor: pointer;
}
/* Hover effect for the button */
.book_section .form_container button:hover {
background-color: #FFFF00;
}