Skip to content

Commit

Permalink
Merge pull request #1 from ReshetS/main-css
Browse files Browse the repository at this point in the history
Main css
  • Loading branch information
ReshetS authored Apr 10, 2024
2 parents f3e333b + f18a336 commit 8b722c7
Showing 1 changed file with 51 additions and 5 deletions.
56 changes: 51 additions & 5 deletions src/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,63 @@
:root {
font-family: 'Inter Tight', sans-serif;
font-optical-sizing: auto;
font-weight: 500;
font-weight: 600;
font-style: normal;
font-size: 16px;
line-height: 24px;
font-size: 14px;
line-height: 1;


color: #fbfbfb;
background-color: #7A3145;


color: #242424;
background-color: rgba(255, 255, 255, 0.87);

font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}




.container {
width: 100%;
padding-left: 20px;
padding-right: 20px;
margin: 0 auto;
}


@media screen and (min-width:375px) {
.container {
width: 375px;
}
}

@media screen and (min-width:768px) {

.container {
width: 768px;
padding-left: 32px;
padding-right: 32px;

}

:root {
font-size: 16px;

}

}

@media screen and (min-width:1280px) {
.container {
width: 1280px;
padding-left: 100px;
padding-right: 100px;

}

}

0 comments on commit 8b722c7

Please sign in to comment.