Skip to content

Commit

Permalink
add vote and results pages for newDesign
Browse files Browse the repository at this point in the history
  • Loading branch information
loicknuchel committed Apr 1, 2012
1 parent a99a7cc commit f89d738
Show file tree
Hide file tree
Showing 181 changed files with 28,988 additions and 13 deletions.
101 changes: 101 additions & 0 deletions clients/newDesign/css/global.css
@@ -1,4 +1,8 @@

.startBlock {
display: none;
}

#header #title {
float: left;
margin-left: 40px;
Expand All @@ -11,3 +15,100 @@
#header #title h2 {
margin: 0px;
}

.widget {
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
background-color: #F9F9F9;
border: 1px solid #D6D6D6;
display: block;
margin: 0 0 20px;
padding: 20px;
text-align: left;
}



.candidats .candidat {
float: left;
position:relative;
cursor: pointer;
width: 180px;
height: 72px;
margin: 5px 5px 5px 5px;
padding: 5px 10px 5px 5px;
background-color: #F6F7F9;
border: 1px solid #F6F7F9;
}
.candidats .candidat.selected {
background-color: #D3DAE8;
}
.candidats .candidat:hover {
border: 1px solid #D3DAE8;
}
.candidats .candidat .name {
margin: 5px 0 0 60px;
font-weight: 300;
}
.candidats .candidat div.pic {
display: inline-block;
float: left;
}
.candidats .candidat div.pic {
width: 72px;
height: 72px;
}
.candidats .candidat.active div.pic {
background-position: 0px 0px;
}
.candidats .candidat div.pic {
background-position: 0px -50px;
}
.candidats .candidat .infocandidatdiv a {
position: static;
padding: 0px;
}
.candidats .candidat .infocandidat {
position: absolute;
bottom: 5px;
right: 5px;
height: 34px;
width: 34px;
border: 0;
}

#orderCandidates {
cursor: move;
font-family: Arial,Helvetica,sans-serif;
font-size: 9pt;
list-style-type: none;
margin: auto;
max-width: 300px;
}
#orderCandidates li {
margin: 0px;
padding-top: 5px;
font-size: 12px;
height: 32px;
vertical-align: center;
}
#orderCandidates img {
padding-left: 15px;
margin: 0;
height: 32px;
width: 32px;
}
#orderCandidates li span:nth-child(2) {
position: absolute;
height: 12px;
margin-left: -1.3em;
}
#orderCandidates div {
padding-top: 5px;
}





8 changes: 4 additions & 4 deletions clients/newDesign/css/home.css
@@ -1,21 +1,21 @@

#archidede {
.home #archidede {
padding: 10px;
margin-bottom: 20px;
}

#widgets .button-container {
.home #widgets .button-container {
display: block;
text-align: center;
}

#widgets .button-container a {
.home #widgets .button-container a {
margin-top: 5px;
font-size: 16px;
padding: 5px 10px;
}

#widgets .vote .button-container a {
.home #widgets .vote .button-container a {
font-size: 24px;
padding: 10px 20px;
}
Expand Down

0 comments on commit f89d738

Please sign in to comment.