Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nabila elita
V3423063_MovieBookingApp_v2
Commits
c8cb060e
Commit
c8cb060e
authored
6 months ago
by
nabila elita
Browse files
Options
Download
Email Patches
Plain Diff
Upload New File
parent
63cac808
main
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
style.css
+96
-0
style.css
with
96 additions
and
0 deletions
+96
-0
style.css
0 → 100644
View file @
c8cb060e
/* Global Styling */
body
{
font-family
:
Arial
,
Helvetica
,
sans-serif
;
margin
:
0
;
padding
:
0
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
height
:
100vh
;
background-color
:
#8b8a7e
;
}
/* Form and Result Box Styling */
.booking-form
,
.booking-details
{
border
:
1px
solid
#e4e3d6
;
padding
:
20px
;
margin
:
20px
;
background-color
:
#8b8a7e
;
border-radius
:
15px
;
width
:
100%
;
/* Set width to 100% for flexible scaling */
max-width
:
600px
;
/* Adjust max width for larger screens */
box-shadow
:
0
0
10px
rgba
(
0
,
0
,
0
,
0.1
);
}
.container
{
width
:
100%
;
max-width
:
600px
;
/* Increased max width to make the form larger */
}
.card
{
width
:
100%
;
box-shadow
:
0
4px
8px
rgba
(
88
,
129
,
93
,
0.1
);
}
/* Heading Styling */
h2
{
font-size
:
28px
;
/* Make the heading bigger */
margin-bottom
:
20px
;
}
/* Styling untuk hasil booking tabel */
table
{
width
:
100%
;
/* Tabel mengisi lebar penuh */
border-collapse
:
collapse
;
/* Hilangkan jarak antara border sel tabel */
margin-bottom
:
20px
;
}
table
th
,
table
td
{
padding
:
10px
;
/* Tambahkan padding untuk ruang yang lebih rapi */
border
:
1px
solid
#ddd
;
/* Border tipis untuk sel */
text-align
:
left
;
/* Pastikan teks rata kiri */
}
table
th
{
background-color
:
#8b8a7e
;
/* Tambahkan background untuk header tabel */
}
table
td
{
background-color
:
#d9d9d9
;
}
.booking-details
{
background-color
:
#d9d9d9
;
padding
:
20px
;
border-radius
:
8px
;
box-shadow
:
0
0
10px
rgba
(
0
,
0
,
0
,
0.1
);
}
/* Form Input Styling */
input
[
type
=
"text"
],
input
[
type
=
"date"
],
select
{
width
:
100%
;
padding
:
12px
;
/* Increase padding for better usability */
box-sizing
:
border-box
;
}
button
{
background-color
:
#7aa17b
;
color
:
rgb
(
159
,
171
,
157
);
padding
:
12px
20px
;
border
:
none
;
border-radius
:
5px
;
cursor
:
pointer
;
width
:
100%
;
font-size
:
16px
;
/* Increase button font size */
}
button
:hover
{
background-color
:
#45a049
;
}
/* Adjustments for smaller screens */
@media
screen
and
(
max-width
:
768px
)
{
.booking-form
,
.booking-details
{
width
:
100%
;
max-width
:
450px
;
/* Make the form responsive for smaller screens */
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help