forked from uzairpm/Seat-Reservation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
50 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<h1> | ||
{{title}} | ||
</h1> | ||
<div class="container"> | ||
<seat-list></seat-list> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,32 @@ | ||
/* You can add global styles to this file, and also import other style files */ | ||
body, | ||
main::before { | ||
font-family: 'Open Sans', sans-serif; | ||
background: url(https://images8.alphacoders.com/453/thumb-1920-453112.jpg) 0 / cover fixed; | ||
} | ||
|
||
main { | ||
margin: 60px auto; | ||
position: relative; | ||
padding: 10px 5px; | ||
background: hsla(0,0%,10%,.15); | ||
font-size: 20px; | ||
line-height: 1.5; | ||
border-radius: 10px; | ||
width: 45%; | ||
min-width: 500px; | ||
box-shadow: 0px 0px 10px #000; | ||
overflow: hidden; | ||
} | ||
|
||
main::before { | ||
content: ''; | ||
margin: -35px; | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
bottom: 0; | ||
left: 0; | ||
filter: blur(5px); | ||
z-index: -1; | ||
} |