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 Assets/images/Ellipse 8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/images/block-conteudos.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions Assets/images/bt-mais.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions Assets/images/bt-voltar.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/images/carousel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions Assets/images/emergency.svg
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/images/home-active.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions Assets/images/home.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions Assets/images/search.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/images/smile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions Assets/images/test.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions Assets/styles/nav.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
body {
margin: 0 0 55px 0;
}
.navtop {
width: 100%;
display: flex;
overflow-x: auto;
}

.nav__link__top {
display: flex;
align-items: center;
flex-grow: 1;
min-width: 50px;
overflow: hidden;
white-space: nowrap;
-webkit-tap-highlight-color: transparent;
transition: background-color 0.1s ease-in-out;
}

#bt-voltar{
justify-content:flex-start;
}

#bt-mais{
justify-content:end;
}

.nav {
position: fixed;
bottom: 0;
width: 100%;
height: 55px;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
background-color: #ffffff;
display: flex;
overflow-x: auto;
}

.nav__link {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex-grow: 1;
min-width: 50px;
overflow: hidden;
white-space: nowrap;
font-family: sans-serif;
font-size: 13px;
color: #444444;
text-decoration: none;
-webkit-tap-highlight-color: transparent;
transition: background-color 0.1s ease-in-out;
}

.nav__link:hover {
background-color: #eeeeee;
}


img.nav__icon {
width: 24px;
height: 24px;
}

#teste {
color: aqua;
}
25 changes: 25 additions & 0 deletions Assets/styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
h1{
font-size: 36px;
}

h2{
font-size: 33px;
}

h2{
font-size: 26px;
}

p{
font-size: 16px;
}

#emergency-bg-color{
background-color: #F2F2F2;
}

@media (max-width: 376px) {
.response img {
width: 98%;
}
}
113 changes: 0 additions & 113 deletions index.html

This file was deleted.

6 changes: 3 additions & 3 deletions manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"short_name": "Sobre a Faculdade iv2",
"name": "aboutiv2",
"short_name": "SammakkoApp",
"name": "Aplicativo Sammakko",
"start_url": ".",
"display": "standalone",
"theme_color": "#ffffff",
"theme-color": "#ffffff",
"background_color": "#000000",
"background-color": "#000000",
"description": "my site description",
"description": "Aplicativo da equipe Sammakko e PERC",
"icons": [
{
"src": "images/logo.png",
Expand Down
85 changes: 85 additions & 0 deletions package-lock.json

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

24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "app-perc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faculdadeiv2/PWA.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/faculdadeiv2/PWA/issues"
},
"homepage": "https://github.com/faculdadeiv2/PWA#readme",
"dependencies": {
"bootstrap": "^5.2.0-beta1",
"jquery": "^3.6.0",
"popper.js": "^1.16.1"
}
}
Loading