initial commit, completed 40% of first milestone

This commit is contained in:
Amruth Pillai
2020-03-25 02:52:24 +05:30
parent dfeb67cda9
commit 25a6740c24
36 changed files with 55170 additions and 154 deletions

View File

@ -1,13 +1,61 @@
html,
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
height: 100%;
color: #2d3748;
background-color: #f5f5f5;
font-size: 14px;
font-family: 'Montserrat', sans-serif;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
@media screen {
#sidebar {
top: 0;
left: 0;
bottom: 0;
}
#tabs::-webkit-scrollbar {
width: 0px;
background: transparent; /* make scrollbar transparent */
}
#tabs li:first-child {
padding-left: 1.5em;
}
#tabs li:last-child {
padding-right: 1.5em;
}
#page {
width: 21cm;
height: 29.7cm;
zoom: 0.8;
background-color: white;
overflow: scroll;
}
}
@media print {
html,
body,
body * {
-webkit-print-color-adjust: exact;
background-color: white;
visibility: hidden;
}
#page,
#page * {
visibility: visible;
}
#page {
margin: 0;
padding: 0;
box-shadow: none;
position: absolute;
left: 0;
top: 0;
}
}