Completely remove csv-db files and continued working on frontend. Created styles base

This commit is contained in:
2020-07-04 22:31:26 +05:00
parent cd874d6e28
commit 55f5ccfdf4
19 changed files with 153 additions and 571 deletions

View File

@ -2,8 +2,7 @@
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "alte_haas_grotesk_bold", "Helvetica Neue", Helvetica, Arial;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
::selection {
@ -11,8 +10,8 @@
color: #ffffff;
}
html {
min-height: 100vh;
html, body {
height: 100%;
}
body {
@ -21,28 +20,74 @@ body {
padding: 45px;
}
a {
font-family: monospace;
color: #000000;
}
header {
height: 65px;
margin-bottom: 20px;
margin-bottom: 30px;
}
header img {
height: 100%;
}
main h1 {
margin: 20px 0;
}
main li {
list-style-type: none;
}
li a {
header #modern {
line-height: 65px;
text-align: center;
vertical-align: top;
margin-left: 30px;
font-size: 18px;
color: #000000;
font-family: monospace;
}
li:hover a {
header #modern:hover
{
text-decoration: none;
}
main {
max-width: 800px;
}
main>* {
margin-bottom: 30px;
}
main img {
max-width: 100%;
}
main>ul {
padding-left: 30px;
}
main p, main blockquote, main li {
font-size: 20px;
line-height: 30px;
}
main a:hover {
text-decoration: none;
}
main blockquote {
margin-left: 20px;
padding-left: 10px;
border-left: #000000 solid 5px;
}
main>#header {
font-size: 45px;
}
@media (max-width: 800px) {
body {
padding: 30px;
}
header #modern {
margin-left: 25px;
}
}