Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
Binary file added dist/assets/images/f9fb98b309f415068734.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
216 changes: 216 additions & 0 deletions dist/assets/js/main.bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions dist/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Webpack Basics</title>
<link
rel="shortcut icon"
href="favicon.svg"
type="image/x-icon"
/>
<link rel="icon" href="favicon.svg"><script defer src="assets/js/main.bundle.js"></script><link href="styles/main.css" rel="stylesheet"></head>
<body>
<div class="wrapper" id="root"></div>
<footer id="footer"></footer>
</body>
</html>
76 changes: 76 additions & 0 deletions dist/styles/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
/*!*************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
\*************************************************************************************************************/
* {
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.wrapper {
background-color: white;
padding-top: 2rem;
margin: 4rem auto;
width: 30rem;
height: 30rem;
text-align: center;
}
.wrapper__msg {
margin-top: 1rem;
font-size: 2rem;
font-weight: 600;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.wrapper__list {
display: flex;
justify-content: space-between;
margin: 0 2rem 2rem;
}
.wrapper__list div {
text-align: center;
}
.wrapper__list img {
height: 6rem;
}
.wrapper__pic {
background-color: white;
}
.wrapper__pic img {
height: 20rem;
margin-bottom: 2rem;
max-width: 30rem;
}
.wrapper__btns {
text-align: center;
margin: 1rem auto;
width: 50%;
}
.wrapper__btns button {
height: 3rem;
width: 8rem;
color: white;
background-color: red;
border: 1px solid black;
cursor: pointer;
}
.wrapper__btns button:hover {
background-color: #ff9999;
color: black;
}

footer {
width: 30rem;
height: 3rem;
text-align: center;
margin: auto;
background-color: white;
position: relative;
top: 4rem;
}
footer p {
background-color: white;
font-size: 1rem;
padding-top: 1rem;
}

body {
background-color: black;
}
1 change: 1 addition & 0 deletions favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading