-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from infoshareacademy/FZ12OK-55
Fz12 ok 55
- Loading branch information
Showing
24 changed files
with
917 additions
and
662 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> | ||
<link rel="icon" href="%PUBLIC_URL%/favicon.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<meta name="description" content="Web site created using create-react-app" /> | ||
<link rel="apple-touch-icon" href="logo192.png" /> | ||
<link rel="apple-touch-icon" href="favicon.png" /> | ||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css" /> | ||
<!-- | ||
manifest.json provides metadata used when your web app is installed on a | ||
|
@@ -30,7 +30,7 @@ | |
name="viewport" | ||
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no" | ||
/> | ||
<title>React App</title> | ||
<title>PackMeApp</title> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
body { | ||
background-image: url("./images/background.jpg"); | ||
background-position: center; | ||
background-attachment: fixed; | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
} | ||
|
||
.containerWrapper { | ||
background: rgb(255, 255, 255); | ||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.8897934173669468) 0%, rgba(255, 255, 255, 0.7805497198879552) 100%); | ||
padding: 78px 20px 10px; | ||
} | ||
|
||
.fileContainer { | ||
overflow: hidden; | ||
position: relative; | ||
} | ||
|
||
.fileContainer [type=file] { | ||
cursor: inherit; | ||
display: block; | ||
font-size: 999px; | ||
filter: alpha(opacity=0); | ||
min-height: 100%; | ||
min-width: 100%; | ||
opacity: 0; | ||
position: absolute; | ||
right: 0; | ||
text-align: right; | ||
top: 0; | ||
} | ||
|
||
.item-done { | ||
text-decoration: line-through; | ||
} |
Oops, something went wrong.