reworking the project on django

This commit is contained in:
Yamozha
2021-02-05 00:57:22 +02:00
parent 98f8b51a42
commit 3dfd277b99
8 changed files with 138 additions and 0 deletions

35
old/Website/css/home.css Normal file
View File

@ -0,0 +1,35 @@
@import url(https://fonts.googleapis.com/css?family=Roboto:300);
:root {
--base-grid: 8px;
--colour-white: #fff;
--colour-black: #1a1a1a;
}
@viewport {
width: device-width ;
zoom: 1.0 ;
}
*,
:after,
:before {
box-sizing: border-box;
}
html {
margin: 0;
padding: 0;
background-position: 100%;
}
body {
position: absolute;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
top: 50%;
font-size: 1.2em;
font-family: 'Roboto', sans-serif;
line-height: 1.4;
}