css ref
This commit is contained in:
parent
192605eaf1
commit
d92ce6372d
@ -15,6 +15,6 @@ body {
|
|||||||
{
|
{
|
||||||
border: 7px solid white;
|
border: 7px solid white;
|
||||||
box-shadow: 0px 0px 3px black;
|
box-shadow: 0px 0px 3px black;
|
||||||
height : 250px;
|
max-height : 250px;
|
||||||
width : 250px;
|
max-width : 250px;
|
||||||
}
|
}
|
@ -1,8 +1,17 @@
|
|||||||
body
|
body
|
||||||
{
|
{
|
||||||
background-image:url("../pictures/setting_picture/fond.jpg");
|
background-image:url("../pictures/setting_picture/fond.jpg");
|
||||||
background-attachment:fixed;
|
background-attachment:fixed;
|
||||||
background-repeat:no-repeat;
|
background-repeat:no-repeat;
|
||||||
background-position:100% 100%;
|
background-position:100% 100%;
|
||||||
background-size:cover;
|
background-size:cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.col-md-3
|
||||||
|
{
|
||||||
|
padding: 1%;
|
||||||
|
background: white;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid grey;
|
||||||
|
box-shadow: 1px 1px 2px dimgrey;
|
||||||
|
}
|
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<link href="css/admin.css" rel="stylesheet" type="text/css"/>
|
<link href="css/admin.css" rel="stylesheet" type="text/css"/>
|
||||||
|
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
@if (session('message_add'))
|
@if (session('message_add'))
|
||||||
<div class="alert alert-success col-sm-4">
|
<div class="alert alert-success col-sm-4">
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<br>
|
<br>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|
||||||
<legend>Créer une listeoeuvre:</legend>
|
<legend>Créer une liste oeuvre:</legend>
|
||||||
<form class="form-inline" method="POST" role="form" action="addListeOeuvre">
|
<form class="form-inline" method="POST" role="form" action="addListeOeuvre">
|
||||||
<input type="hidden" name="idUser" value="{{ $me->id }}">
|
<input type="hidden" name="idUser" value="{{ $me->id }}">
|
||||||
<input type="hidden" name="_token" value="{{{ csrf_token() }}}" />
|
<input type="hidden" name="_token" value="{{{ csrf_token() }}}" />
|
||||||
@ -32,10 +32,8 @@
|
|||||||
</form>
|
</form>
|
||||||
@endforeach
|
@endforeach
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="col-md-9">
|
<div class="col-md-9">
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user