-
Notifications
You must be signed in to change notification settings - Fork 66
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
1 parent
b5e3d12
commit 2d304bb
Showing
86 changed files
with
5,490 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
*{ | ||
margin: 0px; | ||
padding: 0px; | ||
font-family: sans-serif; | ||
box-sizing: border-box; | ||
} | ||
|
||
body{ | ||
background-image: url("https://wallpaperaccess.com/full/2634177.jpg"); | ||
background-size: cover; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 100vh; | ||
} | ||
|
||
.body{ | ||
position: relative; | ||
width: 400px; | ||
height: 550px; | ||
background-color: white; | ||
box-shadow: 0 0 10px orange; | ||
border-radius: 20px; | ||
padding: 40px; | ||
} | ||
|
||
.login{ | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
h2{ | ||
font-size: 35px; | ||
color: center; | ||
color: black; | ||
text-align: center; | ||
} | ||
|
||
.sign-UP{ | ||
position: relative; | ||
margin: 30px 0; | ||
border-bottom: 2px solid black; | ||
} | ||
|
||
.sign-UP label{ | ||
position: absolute; | ||
top: 50%; | ||
left: 5px; | ||
transform: translateY(-50%); | ||
color: black; | ||
pointer-events: none; | ||
transition: .5s; | ||
} | ||
|
||
.sign-UP input{ | ||
background-color: transparent; | ||
font-size: 16px; | ||
width: 320px; | ||
height: 40px; | ||
color: black; | ||
padding: 0 5px; | ||
border: none; | ||
outline: none; | ||
|
||
} | ||
|
||
.remember{ | ||
margin: -5px 0 15px 5px; | ||
} | ||
|
||
.remember label{ | ||
color: black; | ||
font-size: 14px; | ||
} | ||
|
||
button{ | ||
position: relative; | ||
width: 100%; | ||
height: 40px; | ||
background: orange; | ||
box-shadow: 0 0 10px orange; | ||
font-size: 16px; | ||
color: black; | ||
font-weight: 500; | ||
cursor: pointer; | ||
border: none; | ||
outline: none; | ||
border-radius: 35px; | ||
} | ||
.remember input{ | ||
accent-color: orange; | ||
} | ||
|
||
.sign-in{ | ||
font-size: 14px; | ||
margin: 10px; | ||
text-align: center; | ||
} | ||
.sign-in p{ | ||
color: black; | ||
} | ||
.sign-in p a{ | ||
color: orange; | ||
text-decoration: none; | ||
font-weight: 500; | ||
} | ||
.sign-in p a:hover{ | ||
text-decoration: underline; | ||
} | ||
.sign-UP input:focus~label, | ||
.sign-UP input:valid~label | ||
{ | ||
top:-5px; | ||
} | ||
|
||
.Other-Login{ | ||
justify-content: center; | ||
text-align: center; | ||
} | ||
|
||
.fa { | ||
padding: 20px; | ||
font-size: 30px; | ||
width: 50px; | ||
text-align: center; | ||
text-decoration: none; | ||
margin: 5px 2px; | ||
} | ||
|
||
.fa:hover { | ||
opacity: 0.7; | ||
} | ||
|
||
.fa-facebook { | ||
background: #3B5998; | ||
color: white; | ||
border-radius: 10px; | ||
} | ||
|
||
.fa-google { | ||
background: #dd4b39; | ||
color: white; | ||
border-radius: 10px; | ||
} | ||
|
||
.fa-instagram { | ||
background: #125688; | ||
color: white; | ||
border-radius: 10px; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,232 @@ | ||
*{ | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: sans-serif; | ||
} | ||
|
||
body{ | ||
min-height: 100vh; | ||
} | ||
|
||
.header{ | ||
position: relative; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
padding: 20px 100px; | ||
background-color: orange; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
.Logo{ | ||
font-size: 32px; | ||
color: white; | ||
text-decoration: none; | ||
font-weight: 700px; | ||
} | ||
.navbar a{ | ||
font-size: 18px; | ||
color: white; | ||
text-decoration: none; | ||
font-weight: 500; | ||
margin-left: 20px; | ||
} | ||
|
||
.navbar a:hover{ | ||
color: red; | ||
} | ||
|
||
.navbar a button{ | ||
background-color: transparent; | ||
color: white; | ||
font-weight: 500; | ||
font-size: 15px; | ||
padding: 10px; | ||
border-radius: 10px; | ||
border: none ; | ||
outline: none; | ||
} | ||
|
||
.navbar a button:hover{ | ||
background-color: red; | ||
} | ||
|
||
.content{ | ||
position: relative; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
color: grey; | ||
padding: 20px 100px; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
.nav a{ | ||
font-size: 18px; | ||
text-decoration: none; | ||
color: grey; | ||
font-weight: 500; | ||
margin-left: 20px; | ||
} | ||
|
||
.nav a:hover{ | ||
color: red; | ||
} | ||
|
||
.Preferences{ | ||
position: relative; | ||
padding: 20px 100px; | ||
display: flex; | ||
color: grey; | ||
gap: 10px | ||
} | ||
|
||
.Preferences select{ | ||
padding: 3px; | ||
border-radius: 5px; | ||
display: flex; | ||
} | ||
.store{ | ||
display: flex; | ||
gap: 10px; | ||
} | ||
.every { | ||
position: relative; | ||
margin-left: 6%; | ||
padding: 20px; | ||
height: 370px; | ||
width: 200px; | ||
border: 1px grey solid; | ||
border-radius: 10px; | ||
background-color: whitesmoke; | ||
} | ||
|
||
.every h4{ | ||
color: grey; | ||
} | ||
|
||
.every ul a{ | ||
color: black; | ||
text-decoration: none; | ||
font-weight: 500; | ||
} | ||
|
||
.every ul a:hover{ | ||
color:orange; | ||
} | ||
|
||
.all{ | ||
margin-left: 10%; | ||
height: 100px; | ||
} | ||
.Comic{ | ||
display: inline-block; | ||
width:180px; | ||
cursor: pointer; | ||
transition: transform 0.3s ease-in-out; | ||
} | ||
|
||
.Comic:hover { | ||
transform: scale(0.95); | ||
} | ||
|
||
.Comic { | ||
position: relative; | ||
overflow: hidden; | ||
cursor: pointer; | ||
transition: transform 0.3s ease-in-out; | ||
} | ||
|
||
.Comic:hover { | ||
transform: scale(0.95); | ||
} | ||
|
||
.hidden { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 150px; | ||
height: 250px; | ||
background-color: rgba(0, 0, 0, 0.5); | ||
opacity: 0; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: flex-end; | ||
color: white; | ||
transition: 0.5s; | ||
border-radius: 15px; | ||
} | ||
|
||
.hidden p { | ||
align-self: flex-start; | ||
font-size: 12px; | ||
} | ||
|
||
.hidden a{ | ||
text-decoration: none; | ||
color: white; | ||
} | ||
|
||
|
||
.Comic:hover .hidden { | ||
opacity: 1; | ||
transition: 0.5s; | ||
} | ||
.Subline{ | ||
font-size: 12px; | ||
font-family: sans-serif; | ||
color: grey; | ||
padding-bottom: 15px ; | ||
} | ||
|
||
.Action{ | ||
position: relative; | ||
margin-left: 6%; | ||
padding: 20px; | ||
height: 290px; | ||
width: 200px; | ||
border: 1px grey solid; | ||
border-radius: 10px; | ||
background-color: whitesmoke; | ||
} | ||
|
||
.Action h4{ | ||
color: grey; | ||
} | ||
|
||
.Action input{ | ||
accent-color: orange; | ||
} | ||
|
||
.about{ | ||
background-color: orange; | ||
} | ||
|
||
.About{ | ||
background-color: orange; | ||
color: white; | ||
position: relative; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
padding: 20px 100px; | ||
text-align: center; | ||
} | ||
|
||
footer{ | ||
background-color: orange; | ||
color: #fff; | ||
text-align: center; | ||
padding: 20px; | ||
} | ||
|
||
.Action a{ | ||
text-decoration: none; | ||
color: black; | ||
} | ||
|
Oops, something went wrong.