[SSG][Design] Add Subscribe page.

This commit is contained in:
2020-02-01 15:29:36 +05:30
parent 3d8a816b66
commit c1b3690df8
10 changed files with 2935 additions and 3 deletions

View File

@@ -94,6 +94,35 @@ body {
margin: 0.5em 1em;
}
}
.subscribe {
display: flex;
width: 600px;
justify-content: space-between;
flex-wrap: wrap;
margin: auto;
a {
color: #000;
font-size: 100px;
text-align: center;
padding: 50px 50px;
transition-duration: 0.2em;
text-decoration: none;
}
a:hover, a:active {
font-size: 0;
color: #FFF;
background-color: #000;
text-decoration: none;
transition-duration: 0.2em;
}
a:hover::after {
content: attr(x-text);
position: relative;
top: 50px;
font-size: 1rem;
text-decoration: none;
}
}
}
}
@@ -173,6 +202,17 @@ h1 {
}
}
@media (max-width: 800px) {
body {
.top {
.wrapper {
.subscribe {
width: 400px;
}
}
}
}
}
@media (max-width: 600px) {
body {
.top_bg {
@@ -213,6 +253,17 @@ h1 {
}
}
@media (max-width: 480px) {
body {
.top {
.wrapper {
.subscribe {
width: 200px;
}
}
}
}
}
@keyframes move_right {
from {left: 0}