Updated project structure and makefile. Started creating frontend. Created csv database interphase

This commit is contained in:
2020-06-30 12:39:50 +05:00
parent 457a52a585
commit db9b46f041
28 changed files with 643 additions and 89 deletions

48
static/style.css Normal file
View File

@ -0,0 +1,48 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "alte_haas_grotesk_bold", "Helvetica Neue", Helvetica, Arial;
}
::selection {
background-color: #000000;
color: #ffffff;
}
html {
min-height: 100vh;
}
body {
background-color: #ffffff;
border-top: solid 5px #000000;
padding: 45px;
}
header {
height: 65px;
margin-bottom: 20px;
}
header img {
height: 100%;
}
main h1 {
margin: 20px 0;
}
main li {
list-style-type: none;
}
li a {
color: #000000;
font-family: monospace;
}
li:hover a {
text-decoration: none;
}