Initial project set up
This commit is contained in:
parent
4714dfe5d4
commit
8df96d70fa
14
index.html
14
index.html
|
@ -0,0 +1,14 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/@sakun/system.css">
|
||||||
|
<link rel="stylesheet" href="style/style.css">
|
||||||
|
<title>Baxter's Desktop</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,16 @@
|
||||||
|
/* I may not want to reset margin and padding with a custom CSS framework
|
||||||
|
Saving it here in case I do though.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* *, ::before, ::after {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
} */
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
Loading…
Reference in New Issue