Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Text Responsive 404 website.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
========== HOME ==========
.home__subtitle
Error 404

.home__title
Hey Buddy

.home__description
We can't seem to find the page <br> you are looking for.

.home__button
Go Home

.home__footer
(554) 987-654
[email protected]
93 changes: 93 additions & 0 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
--header-height: 3.5rem;

/*========== Colors ==========*/
/*Color mode HSL(hue, saturation, lightness)*/
--first-color: hsl(38, 69%, 59%);
--text-color: hsl(38, 8%, 8%);

/*========== Font and typography ==========*/
/*.5rem = 8px | 1rem = 16px ...*/
--body-font: 'Space Grotesk', sans-serif;
--biggest-font-size: 2.375rem;
--normal-font-size: .938rem;
--smaller-font-size: .75rem;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
:root {
--biggest-font-size: 5rem;
--normal-font-size: 1rem;
--smaller-font-size: .813rem;
}
}

/*=============== BASE ===============*/
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}

body {
font-family: var(--body-font);
font-size: var(--normal-font-size);
font-weight: 500;
color: var(--text-color);
}

ul {
list-style: none;
}

a {
text-decoration: none;
}

img {
max-width: 100%;
height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
max-width: 1024px;
margin-left: 1.5rem;
margin-right: 1.5rem;
}

.main {
overflow: hidden; /* For the animations ScrollReveal */
}

/*=============== HEADER & NAV ===============*/


/* Show menu */


/*=============== HOME ===============*/


/* Animate ghost */


/*=============== BREAKPOINTS ===============*/
/* For small devices */


/* For medium devices */


/* For large devices */


/* For 2K resolutions (2048 x 1152, 2048 x 1536) */


/* For 4K resolutions (3840 x 2160, 4096 x 2160) */
Binary file added assets/img/ghost-img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions assets/js/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/*=============== SHOW MENU ===============*/


/*=============== REMOVE MENU MOBILE ===============*/


/*=============== SCROLL REVEAL ANIMATION ===============*/
12 changes: 12 additions & 0 deletions assets/js/scrollreveal.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 35 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!--=============== BOXICONS ===============-->


<!--=============== CSS ===============-->
<link rel="stylesheet" href="">

<title>Responsive 404 website - Bedimcode</title>
</head>
<body>
<!--==================== HEADER ====================-->
<header class="header">

</header>

<!--==================== MAIN ====================-->
<main class="main">
<!--==================== HOME ====================-->
<section class="home">

</section>
</main>

<!--=============== SCROLLREVEAL ===============-->
<script src=""></script>

<!--=============== MAIN JS ===============-->
<script src=""></script>
</body>
</html>
Binary file added preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.