main
Paul Schneider 9 years ago
parent d4e4ec3753
commit d694e2e9e5
3 changed files with 45 additions and 12 deletions

@ -3,39 +3,39 @@
<dl class="dl-horizontal"> <dl class="dl-horizontal">
<dt> <dt>
@Html.DisplayNameFor(model => model.EventDate) @SR["EventDate"]
</dt> </dt>
<dd> <dd>
@Html.DisplayFor(model => model.EventDate) @Html.DisplayFor(model => model.EventDate)
</dd> </dd>
<dt> <dt>
@Html.DisplayNameFor(model => model.Client) @SR["Client"]
</dt> </dt>
<dd> <dd>
@Html.DisplayFor(model => model.Client.UserName) @Html.DisplayFor(model => model.Client.UserName)
</dd> </dd>
<dt> <dt>
@Html.DisplayNameFor(model => model.Location.Address) @SR["Address"]
</dt> </dt>
<dd> <dd>
@Html.DisplayFor(model => model.Location.Address) @Html.DisplayFor(model => model.Location.Address)
</dd> </dd>
<dt> <dt>
@Html.DisplayNameFor(model => model.PerformerProfile) @SR["Provider"]
</dt> </dt>
<dd> <dd>
@Html.DisplayFor(model => model.PerformerProfile.Performer.UserName) @Html.DisplayFor(model => model.PerformerProfile.Performer.UserName)
</dd> </dd>
<dt> <dt>
@Html.DisplayNameFor(model => model.ValidationDate) @SR["ValidationDate"]
</dt> </dt>
<dd> <dd>
@if (Model.ValidationDate==null) { @if (Model.ValidationDate==null) {
@SR["NotValidated"] @SR["NonValidee"]
} }
else { else {
@Html.DisplayFor(model => model.ValidationDate) @Html.DisplayFor(model => model.ValidationDate)

@ -0,0 +1,16 @@
@model Circle
<dl class="circle dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Name)
</dt>
<dd>
@Html.DisplayFor(model => model.Name)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Owner)
</dt>
<dd>
@Html.DisplayFor(model => model.Owner)
</dd>
</dl>

@ -10,7 +10,7 @@
input, input,
select, select,
textarea { textarea {
max-width: 280px; max-width: 90%;
} }
/* Set widths on image and video, since otherwise they use their native resolution */ /* Set widths on image and video, since otherwise they use their native resolution */
@ -19,28 +19,44 @@ textarea {
/* Carousel */ /* Carousel */
.carousel, .carousel img { .carousel, .carousel img {
min-height: 15em; height: 15em;
} }
.carousel-caption p { .carousel-caption p {
font-family: "jubilat"; font-family: "jubilat";
font-weight: 600; font-weight: 600;
font-size: large; font-size: large;
line-height: 1.1; line-height: 1.1;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); text-decoration: overline;
text-decoration-line: overline;
text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.8);
-webkit-text-shadow: inset 0 3px 5px rgb(0, 0, 0); -webkit-text-shadow: inset 0 3px 5px rgb(0, 0, 0);
color: white; color: aliceblue;
background-color: rgba(0,0,0,.5);
margin:0; margin:0;
padding:.5em; padding:.5em;
animation: mymove 3s infinite;
}
@-webkit-keyframes mymove {
from {text-decoration-color: red;}
50% {text-decoration-color: blue;}
to {text-decoration-color: red;}
} }
/* Standard syntax */
@keyframes mymove {
from {text-decoration-color: red;}
50% {text-decoration-color: blue;}
to {text-decoration-color: red;}
}
ul.actiongroup li { ul.actiongroup li {
display:inline; display:inline;
} }
ul.actiongroup li a:hover { ul.actiongroup li a:hover {
background-color: rgba(128,128,128,.2); background-color: rgba(128,128,128,.2);
color: red; color: red;
} }
input, select, textarea { input, select, textarea {
max-width: 100%; max-width: 100%;
} }
@ -49,6 +65,7 @@ footer {
vertical-align: bottom; vertical-align: bottom;
padding: 1.5em; padding: 1.5em;
} }
.display-field { .display-field {
font-kerning: none; font-kerning: none;
display: inline-flex; display: inline-flex;
@ -60,12 +77,12 @@ footer {
display: inline-flex; display: inline-flex;
color: rgb(127,127,127); color: rgb(127,127,127);
background-color: rgba(200,256,200,.4); background-color: rgba(200,256,200,.4);
} }
nav { nav {
background: url('/images/booking/musique-2.jpg') 0% 50%; background: url('/images/booking/musique-2.jpg') 0% 50%;
} }
footer { footer {
color:rgb(128,128,128); color:rgb(128,128,128);
font-weight: bolder; font-weight: bolder;

Loading…