yavsc/web/App_Themes/dark/style.css
Paul Schneider 58839ab69c le theme, WIP les cercles
* input.css: refabrication des feuilles de style : la feuille des
  champs de formulaire.

* CircleMember.cs: un membre de cercle est un nom d'utilisateur
  associé au cercle d'un autre utilisateur.

* ICircle.cs: Définit l'interface d'un cercle:
un cercle est identifié par un entier long,
il a un possesseur.

* Makefile: utilise le fichier de conf généré pour débugger.

* NpgsqlContentProvider.cs: bug fix

* README.md: maj priorités

* AccountController.cs: implémente une méthode de l'API pour ajouter
  un utilisateur au cercle

* links.css: Corrige la couleur du boutton de validation des
  formulaire de classe `ActionLink`

* style.css: refabrication: importe la nouvelle feuille de style des
  champs de formulaires

* style.css: nettoyage du thème sombre

* style.css: nettoyage + section principale (`main`) centré

* FrontOfficeController.cs: Repositionne la route vers le devis à
  do/Estimate

* YavscHelpers.cs: corrige ma ré-écriture des helpers html ActionLink

* App.master: formattage du code source

* AppAdmin.master: synchronisation avec la page maître,
beaucoup de changements dans cette page maître pour les
  administrateurs:
* prend en charge les côtes d'article
* utilise les fontes de caractère de la page pour les lien action
* prend en charge les zones de formulaire masquable.

* NoLogin.master: synchronisation avec la page maître

* Performer.ascx: WIP permet d'ajouter un préstataire à un de ses
  cercles.

* YourEstimates.aspx: corrige un lien cassé

* Yavsc.csproj: mise à niveau Npgsql,
renommage Estimate

* packages.config: mise à niveau de la bibliothèque Npgsql (pilote
  d'accès à la base de donnée)

* CircleBase.cs: un objet cercle basique implémente l'interface d'un
  cercle.

* PerformerProfile.cs: s'assure que le nom d'utilisateur utilisé n'est
  pas vide.

* IIdentified.cs: doc xml

* UserNameBase.cs: l'objet base de type "nom d'utilisateur" implémente
  l'interface générique
d'un identifié, par une chaine de caractère.

* YavscModel.csproj: reference les nouvelles definitions :
* un membre de cercle
* l'interface d'un cercle

* MainClass.cs: format du code

* YavscClient.csproj:
* Estimate.aspx: refabrication
2015-12-15 21:36:33 +01:00

264 lines
4.8 KiB
CSS

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700);
@import url(/App_Themes/dark/links.css);
.skillname {
background-color: rgba(16,16,64,0.8);
border-color: #aaf;
}
body {
font-family: 'Open Sans', sans-serif;
background-color: black;
color: #D0FFD0;
}
.rate {
border: solid rgb(128,128,0) 1px;
background-color: rgba(20,20,20,.8);
color: yellow;
}
.rate:hover { border-color: green;
background-color:rgba(30,0,124,0.9); }
header {
}
header h1, header a {
background-color: rgba(0,0,0,.5);
}
nav {
background: url("/App_Themes/images/helix-nebula-1400x1400.s.jpg") 50% 10% repeat fixed ;
}
main {
background: url("/App_Themes/images/p8-av4.l.jpg") 50% 50% no-repeat fixed ;
}
footer {
background: url("/App_Themes/images/helix-nebula-1400x1400.s.jpg") 50% 90% repeat fixed ;
}
#copyr { background-color: rgba(20,20,20,.8); }
fieldset {
background-color: rgba(16,16,64,0.8);
border-color: #000060;
}
legend {
background-color: rgba(0,0,32,.5);
}
#gspacer {
background-color: rgba(20,20,20,.8);
}
.thanks {
background-color: rgba(50,50,50,.8);
color: rgb(230,230,230);
font-size: x-small;
font-weight: bold;
}
.thanks:hover {
background-color: rgba(80,80,80,.8);
color: white;
}
.postpreview {
background-color: rgba(0,0,32,0.8);
}
.post {
background-color: rgba(0,0,32,0.8);
color: #eee;
}
.hiddenpost { background-color: rgba(16,16,16,0.5); }
aside {
background-color: rgba(20,20,20,.6);
border-color: rgb(128,128,128);
border-style: solid;
border-width: 1px;
padding: 1em;
}
.usertitleref {
background-color:rgba(0,0,32,0.6);
}
.editable {
border-color: rgb(020,20,256);
}
.notification {
background-color: rgba(64,64,0,0.5);
border-color: green ;
}
.dirty {
background-color: rgba(128,0,0,0.5);
}
.error, #error {
color: #f88;
background-color: rgba(128,0,0,0.5);
}
.validation-summary-errors{
color: #f88;
background-color: rgba(128,0,0,0.5);
}
.validation-summary-errors{
color: #f88;
}
a {
text-decoration: none;
background-color: rgba(30,30,30,.8);
color: yellow;
}
a:hover {
background-color:rgba(50,50,50,.8);
color: white;
}
a:active {
background-color:rgba(124,0,32,0.9);
}
.actionlink, .menuitem, input[type='submit'] {
border-color: rgb(128,128,0);
background-color: rgba(20,20,20,.8);
color: yellow;
}
input, select, textarea {
color: white;
background-color:rgba(32,32,32,0.8);
border-color: rgb(128,128,128);
}
input:hover, textarea:hover {
color: white;
background-color:rgb(0,0,0);
}
.code {
background-color: rgba(0,0,256,0.1);
}
.clickme {
transition: background-color 2s;
}
@media all and (max-width: 640px) {
header {
padding-top:1em;
padding-bottom:1em;
}
#avatar {
margin:.5em;
}
header h1, header a , .actionlink, .menuitem, a { padding:.5em;}
nav {
margin: 1em;
padding: 1em;
background: url("/App_Themes/images/helix-nebula-1400x1400.s.jpg") 50% 10% repeat fixed ;
}
main {
margin: 1em;
padding: 1em;
background: url("/App_Themes/images/p8-av4.jpg") 50% 50% no-repeat fixed ;
}
footer {
background: url("/App_Themes/images/helix-nebula-1400x1400.s.jpg") 50% 90% repeat fixed ;
}
footer a {
border-radius:.5em;
margin:.5em;
padding:.5em;
}
.notification {
padding: .5em;
border-radius:.5em;
margin:.5em;
padding:.5em;
}
.menuitem {
display: block;
}
.post {
margin:.3em;
padding:.3em;
}
.usertitleref{
padding:.3em;
}
.c2 { display:initial; }
.c2-alt { display:none; }
.c3 { display:none; }
.c3-alt { display:initial; }
}
@media all and (max-width: 350px) {
header {
padding-top:.5em;
padding-bottom:.5em;
}
header h1, header a { padding:.2em;}
nav {
margin: .5em;
padding: .5em;
background: url("/App_Themes/images/helix-nebula-1400x1400.xxs.jpg") 50% 10% repeat fixed ;
}
main {
margin: .5em;
padding: .5em;
background: url("/App_Themes/images/p8-av4.s.jpg") 50% 50% no-repeat fixed ;
}
footer {
background: url("/App_Themes/images/helix-nebula-1400x1400.xxs.jpg") 50% 10% repeat fixed ;
}
footer a {
border-radius:.2em;
margin:.2em;
padding:.2em;
}
.c2 { display:none; }
.c2-alt { display:initial; }
}
.input-validation-error { border: solid 1px red; background-color: rgba(128,0,0,0.5);
animation-name: hotzone;
animation-duration: 4s;
animation-iteration-count: infinite;
}
.field-validation-error { color: rgb(256,200,200); background-color: rgba(128,0,0,0.5);
animation-name: hotzone;
animation-duration: 4s;
animation-iteration-count: infinite;
}
input[type='submit'].clickme {
animation-name: hotzone;
animation-duration: 4s;
animation-iteration-count: infinite;
}
@keyframes hotzone {
from {
background-color: rgba(30,30,30,.8);}
50% {background-color: rgba(90,50,50,.8);}
to {background-color: rgba(30,30,30,.8);}
}