Skip to content

Commit 13476c0

Browse files
author
MrRamoun
committed
Merge branch 'feature/add-boilerplate-files' into develop
2 parents c3523ea + 8d0cc13 commit 13476c0

File tree

9 files changed

+102
-0
lines changed

9 files changed

+102
-0
lines changed

css/debug.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
body * {
2+
color: hsla(210, 100%, 100%, 0.88) !important;
3+
background: hsla(210, 100%, 50%, 0.33) !important;
4+
outline: 0.25rem solid hsla(210, 100%, 100%, 0.5) !important;
5+
}

css/layout.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* {
2+
outline: none;
3+
}

css/reset.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
2+
:root {
3+
font: 20px/1.2 "Poppins", sans-serif;
4+
}
5+
6+
/* or html */
7+
8+
body, body * {
9+
margin: unset;
10+
box-sizing: unset;
11+
padding: unset;
12+
font-size: unset;
13+
color: unset;
14+
text-decoration: unset;
15+
}

css/style.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
:root {
2+
--dark: #2f303a;
3+
--light-black: #26262e;
4+
--accent: #1762a7;
5+
--accent-hover: #2180d8;
6+
--light: #fff;
7+
--light-hover: #adadad;
8+
--blue: #3856b0;
9+
--red: #b038a0;
10+
--purple: #3a38b0;
11+
}
12+
13+
* {
14+
transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
15+
}
16+
17+
a {
18+
cursor: pointer;
19+
}

index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<meta name="description"
9+
content="full description of the app">
10+
<meta name="robot" content="index,follow">
11+
<link rel="stylesheet" href="styles/reset.css">
12+
<link rel="stylesheet" href="styles/debug.css">
13+
<title>Document | Description</title>
14+
</head>
15+
16+
<body>
17+
18+
</body>
19+
20+
</html>

js/script.js

Whitespace-only changes.

pages/page2.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<meta name="description"
9+
content="full description of the app">
10+
<meta name="robot" content="index,follow">
11+
<link rel="stylesheet" href="styles/reset.css">
12+
<link rel="stylesheet" href="styles/debug.css">
13+
<title>Document | Description</title>
14+
</head>
15+
16+
<body>
17+
18+
</body>
19+
20+
</html>

test/test.css

Whitespace-only changes.

test/test.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<meta name="description"
9+
content="full description of the app">
10+
<meta name="robot" content="index,follow">
11+
<link rel="stylesheet" href="styles/reset.css">
12+
<link rel="stylesheet" href="styles/debug.css">
13+
<title>Document | Description</title>
14+
</head>
15+
16+
<body>
17+
18+
</body>
19+
20+
</html>

0 commit comments

Comments
 (0)