Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
020dab3
feat: criando o projeto inicial #23
ketwy Mar 20, 2023
0184d78
feat: criando arquivo de reinicializacao de estilo #24
ketwy Mar 20, 2023
374b794
fix: organizando as tags #24
ketwy Mar 20, 2023
1f3228b
feat: criando arquivo de estilo #24
ketwy Mar 20, 2023
1b3da90
fix: adicionando os links de estilo #24
ketwy Mar 20, 2023
e81cbb9
feat: Adicionando configurações da imagem #24
ketwy Mar 21, 2023
59aaa7d
feat: adicionando imagem #24
ketwy Mar 21, 2023
4c6c82d
removendo arquivos desnecessarios #24
ketwy Mar 21, 2023
b975a8c
feat: adicionando a importação daa fonte #24
ketwy Mar 21, 2023
506e197
feat: adicionando e organizando texto que acompanha a imagem #24
ketwy Mar 21, 2023
a056a34
feat: adicionando estilização ao navbar #24
ketwy Mar 21, 2023
4accb36
fix: editando o input de pesquisa #24
ketwy Mar 22, 2023
607388c
feat: estilizando o input de pesquisa #24
ketwy Mar 22, 2023
38f1d92
feat: adicionando icone de busca #24
ketwy Mar 22, 2023
094a504
fix: adicionando classe aos inputs para estilização #24
ketwy Mar 23, 2023
4caf97a
fix: removendo a importação do index e importando no style.css #24
ketwy Mar 23, 2023
093f063
fix: alterando css para adicionar fonte ao placehold #24
ketwy Mar 23, 2023
f33aff5
fix: adicionando class ao div lateral #24
ketwy Mar 24, 2023
52a46d8
fix: editando os tamamhos do sistema para tela de 1536x864 #24
ketwy Mar 24, 2023
c7bce9f
fix: estrutura fixa pronto, main organizado #24
ketwy Mar 24, 2023
056b96c
fix: adicionando imagem ao botão e adicionando suas classes #28
ketwy Mar 24, 2023
796ca50
feat: adicionando botão da barra de pesquisa #24
ketwy Mar 24, 2023
b05642a
fix: editando posicionamento de botão junto a sombra #24
ketwy Mar 24, 2023
dfa244f
fix: editando as bordas dos inputs #24
ketwy Mar 25, 2023
fc82c45
feat: adicionando componete da aba principal de perguntas #24
ketwy Mar 25, 2023
f81ebaf
feat: criando corpo e style das perguntas #24
ketwy Mar 25, 2023
0c145aa
Adicionando imagens #24
ketwy Mar 25, 2023
ea182c2
feat: adicionando funcionalidade de mudança quando tem ou não comenta…
ketwy Mar 25, 2023
8130841
feat: adicionando centralização ao texto de quando não possui comenta…
ketwy Mar 25, 2023
781faa9
feat: adicioanndo perguntas recentes e importando o component #24
ketwy Mar 25, 2023
2c22730
feat: crianção do componente de recentes #24
ketwy Mar 25, 2023
32a49e9
feat: criando responsividade #24
ketwy Mar 25, 2023
3b620af
pequenas alterações para responsividade #24
ketwy Mar 25, 2023
0370276
fix: adicionando atributos que vareiam, com o props #24
ketwy Apr 7, 2023
e0a93d5
fix: adicionando lista de perguntas e nomes #24
ketwy Apr 7, 2023
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
23 changes: 23 additions & 0 deletions src/frontend/ketlly/tarefa1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist


# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
24 changes: 24 additions & 0 deletions src/frontend/ketlly/tarefa1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# tarefa1

## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Lints and fixes files
```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
5 changes: 5 additions & 0 deletions src/frontend/ketlly/tarefa1/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
19 changes: 19 additions & 0 deletions src/frontend/ketlly/tarefa1/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}
43 changes: 43 additions & 0 deletions src/frontend/ketlly/tarefa1/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"name": "tarefa1",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^3.8.3",
"vue": "^3.2.13"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}
Binary file added src/frontend/ketlly/tarefa1/public/favicon.ico
Binary file not shown.
22 changes: 22 additions & 0 deletions src/frontend/ketlly/tarefa1/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="">

<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">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">

<title>
Tarefa 1
</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsivo.css">
</head>

<body>
<div id="app"></div>
</body>

</html>
137 changes: 137 additions & 0 deletions src/frontend/ketlly/tarefa1/public/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}

body {
line-height: 1;
}

ol,
ul {
list-style: none;
}

blockquote,
q {
quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
}
61 changes: 61 additions & 0 deletions src/frontend/ketlly/tarefa1/public/responsivo.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
@media (max-width:1200px) {
.pergunta input {
width: 600px;
}
#pesquisa input {
width: 150px;
}
}

@media (max-width:768px) {
.pergunta input {
width: 430px;
}
#pesquisa input {
width: 95px;
}
#div2 .botoes {
display: block;
height: 65px;
}
}

@media (max-width:413px) {
main .edit {
display: block;
}
#lateral_edit {
width: 100%;
}
.principa {
width: 100%;
}
.cabecalho .menu {
width: 30%;
}
.pergunta input {
width: 250px;
}
.pergunta .botao {
width: 40px;
}
#pesquisa input {
width: 95px;
}
#div2 .botoes {
display: block;
height: 65px;
}
#div {
display: block;
}
}

@media (max-width:1445px) {
.pergunta input {
width: 800px;
}
#pesquisa input {
width: 210px;
}
}
Loading