Skip to content

Commit 4c8eabe

Browse files
fresh start
1 parent 6574d9e commit 4c8eabe

5 files changed

Lines changed: 69 additions & 12 deletions

File tree

public/css/app.css

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
*,
2+
*::before,
3+
*::after
4+
{
5+
margin: 0;
6+
padding: 0;
7+
box-sizing: border-box;
8+
}
9+
10+
html {
11+
font-size: 62.50%;
12+
font-size-adjust: 100%;
13+
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
14+
scroll-behavior: smooth;
15+
}
16+
17+
body {
18+
width: 100%;
19+
height: 100%;
20+
}
21+
22+
main,
23+
.main {
24+
position: relative;
25+
}
26+
27+
h1, h2 h3, h4, h5, h6 {
28+
font-size: 1.6rem;
29+
font-weight: 400;
30+
}
31+
32+
a{
33+
text-decoration: none;
34+
}
35+
36+
ul, ol{
37+
list-style: none;
38+
}
39+
40+
table,
41+
.table {
42+
max-width: 100%;
43+
display: table;
44+
border-spacing: 0;
45+
border-style: solid;
46+
border-width: 1px;
47+
border-color: transparent;
48+
}
49+

public/images/icon.png

60.4 KB
Loading

public/index.html

Lines changed: 0 additions & 12 deletions
This file was deleted.

public/index.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="description" content="Auth Project, PHP Project">
8+
<meta name="robots" content="index, follow">
9+
<link rel="icon" type="image/png" href="/icon.png">
10+
<title><?= $title ?? 'Auth Project';?></title>
11+
12+
<link rel="stylesheet" href="./css/app.css" />
13+
</head>
14+
<body>
15+
16+
17+
<script src="./js/app.js"></script>
18+
</body>
19+
</html>

public/js/app.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log('Welcome');

0 commit comments

Comments
 (0)