Skip to content

Commit

Permalink
Merge pull request #425 from rashmirekhakumari/main
Browse files Browse the repository at this point in the history
movie website
  • Loading branch information
gantavyamalviya authored Oct 11, 2022
2 parents 274e0c9 + 2898e49 commit 1114d88
Show file tree
Hide file tree
Showing 26 changed files with 1,012 additions and 0 deletions.
Binary file added Movie/10.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/11.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/12.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/13.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/14.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/15.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/16.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/7.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Movie/9.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Movie/about
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
it is a responive online movie website
Binary file added Movie/banner.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
182 changes: 182 additions & 0 deletions Movie/design.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,182 @@
@import url('https://fonts.googleapis.com/css2?family=Tiro+Telugu:ital@1&display=swap');
.buttoncolor{
position: absolute;
top: 4%;
right: -237px;
transform: translate(-99% , -21%);
border-radius: 0px;
cursor: pointer;
color: white;
outline: none;
border: none;
font-weight: 7b00;
border-radius: 0.2vw;
padding-left: 2rem;
padding-right: 2rem;
margin-right: 1rem;
padding-top: 0.5rem;
padding-bottom: 0.5rem;

}
.buttoncolor:hover{
transform: scale(1.08);
}

.Red{
background-color: red;
}
.green{
background-color: green;
}

*{
margin: 0;
box-sizing: border-box;
}
body{

font-style: normal;
background-color: black;
}
.rowposters{
width: 100%;
object-fit: contain;
max-height: 300px;
margin-right: none;
transition: tranform 450ms;
}
.rowposters{
display: flex;
overflow-y: hidden;
overflow-x: scroll;
padding: 3px;
}
.rowposters:hover{
transform: scale(1.08);
}
.rowposters::-webkit-scrollbar{
display: none;
}
.rowposters{
max-height: 250px;
}
.row{
color: white;
max-resolution: 20px;
}
.banner{
background-image: url(banner.jpg);
background-size: cover;
background-position: center center;
color:white;
object-fit: contain;
height: 523px;
}
.bannercontents{
margin-left: 30px;
padding-top: 140px;
height: 190px;
}
.bannertitle{
font-size: 3rem;
font-weight: 800;
padding-bottom: 0.3rem;
color: black;
}
.bannerdiscription{
width: 45rem;
line-height: 1.3;
padding-top: 1rem;
font-size: 20px;
max-width: 697px;
height: 180px;
font-family: 'Tiro Telugu', serif;
color: rgb(0, 0, 0);
font-weight: bold;

}
.bannerbutton{
cursor: pointer;
color: black;
outline: none;
border: none;
font-weight: 7b00;
border-radius: 0.2vw;
padding-left: 2rem;
padding-right: 2rem;
margin-right: 1rem;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
font-weight: bold;
}
.bannerbutton:hover{
transform: scale(1.08);
}
.navlogo{
width: 121px;
object-fit: contain;
}
.nav{
position: fixed;
top: 0;
width: 100%;
display: flex;
justify-content: space-between;
padding: 20px;
z-index: 1;
transition-timing-function: ease-in;
transition: all 0.5s;
}


/* styling search bar */
.search input[type=text]{
width:316px;
height:36px;
border: radius 1px;
border: none;
}

.search{
float:right;
margin:7px;
transform: translate(-400px, -2px)

}

.search button{
background-color: black;
color: #f2f2f2;
float: right;
padding: 5px 10px;
margin-right: 16px;
font-size: 12px;
border: none;
cursor: pointer;

}
a.login{
transform: translate(-810px, 3px);
position: absolute;
right: -53px;
cursor: pointer;
color: white;
outline: none;
border: none;
font-weight: 7b00;
border-radius: 0.2vw;
background-size: cover;
background-position: center center;
object-fit: contain;
background-color: red;
border-radius: 0.2vw;
padding-left: 2rem;
padding-right: 2rem;
margin-right: 1rem;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
font-weight: bold;


}

79 changes: 79 additions & 0 deletions Movie/form.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
@import url(https://fonts.googleapis.com/css?family=Roboto:300);
header .header{
background-color: #fff;
height: 45px;
}
header a img{
width: 134px;
margin-top: 4px;
}
.login-page {
width: 360px;
padding: 8% 0 0;
margin: auto;
}
.login-page .form .login{
margin-top: -31px;
margin-bottom: 26px;
}
.form {
position: relative;
z-index: 1;
background: #FFFFFF;
max-width: 360px;
margin: 0 auto 100px;
padding: 45px;
text-align: center;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
font-family: "Roboto", sans-serif;
outline: 0;
background: #f2f2f2;
width: 100%;
border: 0;
margin: 0 0 15px;
padding: 15px;
box-sizing: border-box;
font-size: 14px;
}
.form button {
font-family: "Roboto", sans-serif;
text-transform: uppercase;
outline: 0;
background-color: #328f8a;
background-image: linear-gradient(45deg,#328f8a,#08ac4b);
width: 100%;
border: 0;
padding: 15px;
color: #FFFFFF;
font-size: 14px;
-webkit-transition: all 0.3 ease;
transition: all 0.3 ease;
cursor: pointer;
}
.form .message {
margin: 15px 0 0;
color: #b3b3b3;
font-size: 12px;
}
.form .message a {
color: #4CAF50;
text-decoration: none;
}

.container {
position: relative;
z-index: 1;
max-width: 300px;
margin: 0 auto;
}

body {
background-color: #328f8a;
background-image: linear-gradient(45deg,#328f8a,#08ac4b);
font-family: "Roboto", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

Loading

0 comments on commit 1114d88

Please sign in to comment.