-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed
- Loading branch information
Showing
2 changed files
with
99 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,95 @@ | ||
.cover{ | ||
.cover { | ||
@apply w-full h-screen flex flex-row justify-center items-center z-50 fixed; | ||
background-color: rgba($color: #000000, $alpha: 0.6); | ||
} | ||
.card{ | ||
@apply w-full md:w-1/3 h-auto p-4 mx-4; | ||
background-color: rgb(29, 28, 28); | ||
.card { | ||
@apply p-6 mx-4 bg-white; | ||
width: 591px; | ||
height: 270px; | ||
border-radius: 14px; | ||
} | ||
.topbar{ | ||
@apply flex justify-between text-white font-bold text-xl my-2; | ||
.topbar { | ||
@apply flex justify-between font-bold text-xl my-2; | ||
} | ||
.link{ | ||
@apply p-2 w-full bg-gray-700 text-gray-100 mt-4 cursor-pointer; | ||
.link { | ||
@apply p-2; | ||
color: #adadad; | ||
width: 400px; | ||
background-color: #f8fafc; | ||
} | ||
.facebook{ | ||
.facebook { | ||
margin: 10px 10px; | ||
cursor: pointer; | ||
svg:hover{ | ||
svg:hover { | ||
fill: #0e76a8; | ||
} | ||
} | ||
.instagram{ | ||
.instagram { | ||
margin: 10px 10px; | ||
cursor: pointer; | ||
svg:hover{ | ||
svg:hover { | ||
fill: #3f729b; | ||
} | ||
} | ||
.twitter{ | ||
.twitter { | ||
margin: 10px 10px; | ||
cursor: pointer; | ||
svg:hover{ | ||
svg:hover { | ||
fill: #00acee; | ||
} | ||
} | ||
.close{ | ||
.close { | ||
cursor: pointer; | ||
} | ||
.icons{ | ||
margin-right: 10px; | ||
} | ||
.icons { | ||
margin-right: 40px; | ||
margin-top: 22px; | ||
} | ||
.linkbox { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-items: center; | ||
height: 48px; | ||
margin-top: 34px; | ||
background-color: #f8fafc; | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
} | ||
.copy { | ||
font-size: 18px; | ||
color: #4a81ef; | ||
font-weight: 600; | ||
cursor: pointer; | ||
} | ||
@media only screen and (max-width: 420px) { | ||
.link { | ||
width: 200px; | ||
} | ||
.iconset { | ||
overflow-x: scroll; | ||
display: flex; | ||
width: 100%; | ||
margin-top: 10px; | ||
} | ||
.iconset::-webkit-scrollbar{ | ||
display: none; | ||
} | ||
.card { | ||
width: 360px; | ||
} | ||
.icons { | ||
margin-right: 20px; | ||
margin-top: 0px; | ||
} | ||
.iconimage{ | ||
width: 40px; | ||
} | ||
.linkbox{ | ||
margin-top: 5px; | ||
} | ||
.card{ | ||
height: auto; | ||
padding: 20px; | ||
} | ||
} |