Commit ec505de9 authored by Carlos André's avatar Carlos André
Browse files

ajustes

parents cae8ddcb 1ca80f0d
This diff is collapsed.
......@@ -13,7 +13,7 @@ return [
|
*/
'name' => env('APP_NAME', 'Laravel'),
'name' => env('APP_NAME', 'Submeta'),
/*
|--------------------------------------------------------------------------
......
......@@ -18,7 +18,7 @@ class CreateTrabalhosTable extends Migration
$table->string('titulo');
$table->string('status')->nullable();
$table->string('aprovado')->nullable();
$table->string('linkGrupoPesquisa');
$table->string('linkGrupoPesquisa')->nullable();
$table->string('linkLattesEstudante');
$table->string('pontuacaoPlanilha');
$table->date('data')->nullable();
......@@ -33,7 +33,7 @@ class CreateTrabalhosTable extends Migration
//chaves estrangeiras
$table->unsignedBigInteger('grande_area_id');
$table->unsignedBigInteger('area_id');
$table->unsignedBigInteger('sub_area_id');
$table->unsignedBigInteger('sub_area_id')->nullable();
$table->unsignedBigInteger('evento_id');
$table->unsignedBigInteger('coordenador_id');
$table->unsignedBigInteger('proponente_id');
......
......@@ -25,13 +25,9 @@ body{
background-color: rgb(0, 140, 255);;
border-color: rgb(0, 140, 255);;
}
.btn-primary:hover{
background-color: rgb(212, 216, 219);
border-color: rgb(212, 216, 219);
}
.card{
margin: 20px;
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
transition: 0.2s;
}
......@@ -143,10 +139,7 @@ body{
border-radius: 10px;
}
.btn:hover {
background-color: rgb(212, 216, 219);
color: black;
}
.negrito {
font-weight: bolder;
......@@ -494,3 +487,14 @@ button.close {
.btn-cadastro:hover {
color: black;
}
.bottomVoltar{
display: none;
margin-right:10px;
}
@media screen and (max-width: 767px){
.bottomVoltar{
display: block;
margin-right:10px;
}
}
\ No newline at end of file
......@@ -82,14 +82,7 @@ body{
padding: 7px;
}
.card{
margin: 20px;
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
transition: 0.2s;
}
.card:hover{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.titulo{
margin:7% 0 2% 0;
border-bottom: 2px solid #ccc;
......
@extends('layouts.app')
@section('content')
<div class="container content" style="margin-top: 40px;">
<div class="container content">
<div class="row justify-content-center">
<div class="col-md-5">
<div class="card card-login-cadastro">
{{-- <div class="card-header">{{ __('Login') }}</div> --}}
<div class="col-md-5" style="margin-top: 5rem">
<div class="card shadow bg-white" style="border-radius: 12px">
<div class="card-header" style="border-top-left-radius: 12px; border-top-right-radius: 12px; background-color: #fff">
<div class="d-flex justify-content-between align-items-center" style="margin-top: 9px; margin-bottom:6px">
<h5 class="card-title mb-0" style="font-size:25px; font-family:Arial, Helvetica, sans-serif; color:#1492E6">Entrar</h5>
</div>
</div>
<div class="card-body" style="font-weight: bolder;">
<form method="POST" action="{{ route('login') }}">
@csrf
<div class="row justify-content-center">
<div class="titulo-login-cadastro" style="margin-top: 20px; margin-bottom: 20px; font-size: 20px; color: rgb(0, 140, 255);">{{ __('Login') }}</div>
</div>
<div class="form-group row">
<div class="col-md-12">
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment