Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
edmishchenko authored Jan 29, 2024
1 parent 98766a3 commit d9e3288
Show file tree
Hide file tree
Showing 5 changed files with 373 additions and 309 deletions.
22 changes: 19 additions & 3 deletions docs/css/getStarted.css
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,10 @@ main .second-column .container .article-block p {
margin-bottom: auto;
}

main .second-column .container .article-block button {
main .second-column .container .article-block a {
display: flex;
align-items: center;
justify-content: center;
height: 50px;
border-radius: 4px;
background: transparent;
Expand All @@ -378,9 +381,11 @@ main .second-column .container .article-block button {
font-family: 'Inter', sans-serif;
margin-top: auto;
margin-bottom: 18px;
text-decoration: none;
text-align: center;
}

main .second-column .container .article-block button:hover {
main .second-column .container .article-block a:hover {
background: rgba(241, 8, 55, 1);
color: rgba(255, 255, 255, 1);
}
Expand Down Expand Up @@ -415,6 +420,7 @@ footer .social-media-container svg {

@media (max-width: 992px) {
header {
top: 0;
position: fixed;
background: #FFFFFF;
width: 90%;
Expand All @@ -426,7 +432,11 @@ footer .social-media-container svg {
}

main {
margin-top: 80px;
margin-top: 140px;
box-sizing: border-box;
position: fixed;
overflow-y: auto;
height: calc(100vh - 100px);
}

main .first-column {
Expand Down Expand Up @@ -481,6 +491,12 @@ footer .social-media-container svg {
animation: slideIn 0.5s ease-out;
}

.footer {
padding-bottom: 100px;
width: 100%;
margin-top: 0;
}

@keyframes slideIn {
from {
transform: translateY(-100%);
Expand Down
21 changes: 9 additions & 12 deletions docs/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,16 @@ html , body {
}

body {
width: 100%;
margin: 0 auto;
padding: 0;
overflow: hidden;
min-height: 100vh;
background-image: url("../img/background-desktop.png");
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: cover;
background-color: #0C0C2C;
background-attachment: fixed;
display: flex;
flex-direction: column;
}
Expand Down Expand Up @@ -56,7 +55,6 @@ main {
position: absolute;
left: 55%;
top: 28vh;
/*bottom: -5%;*/
padding-left: 5%;
}

Expand All @@ -81,6 +79,7 @@ main {
line-height: 0.99vw;
cursor: pointer;
font-family: 'Mona Sans', sans-serif;
text-decoration: none;
}

.content .download:hover {
Expand All @@ -91,10 +90,6 @@ main {
background: rgba(210, 4, 45, 1);
}

.content .download-link {
text-decoration: none;
}

.content .get-started {
background: transparent;
border-radius: 0.5em;
Expand All @@ -108,6 +103,7 @@ main {
margin-left: 1.04vw;
cursor: pointer;
font-family: 'Mona Sans', sans-serif;
text-decoration: none;
}

.content .get-started:hover {
Expand All @@ -127,7 +123,7 @@ main {
color: rgba(255, 255, 255, 0.6);
position: absolute;
padding-top: 0.4vw;
margin-top: 0.4vw;
margin-top: 1.2vw;
}

.content .swift-for-android-text {
Expand Down Expand Up @@ -193,9 +189,10 @@ footer .social-media-container svg {
overflow-y: scroll;
overflow-x: hidden;
margin: 0 auto;
background-size: cover;
background-position: 69%;
background-repeat: no-repeat;
background-position: 69% top;
background-attachment: scroll;
background-size: 1190px auto;
background-color: rgb(18, 8, 66);
}

header .logo {
Expand Down Expand Up @@ -256,7 +253,7 @@ footer .social-media-container svg {
padding-bottom: 16px;
}

.content .download {
.content .third-column .download {
width: 100%;
height: 59px;
margin-top: 16px;
Expand Down
Loading

0 comments on commit d9e3288

Please sign in to comment.