Skip to content

Commit

Permalink
Change of colors and improvement of presentation of results - refs #2600
Browse files Browse the repository at this point in the history
  • Loading branch information
aragonc committed Jul 23, 2018
1 parent 2d89344 commit 321095f
Show file tree
Hide file tree
Showing 4 changed files with 365 additions and 105 deletions.
175 changes: 175 additions & 0 deletions app/Resources/public/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -2531,6 +2531,181 @@ div.admin_section h4 {
margin-top: 20px;
margin-bottom: 25px;
}
/* EXERCISE MATFDC */

.certaintyQuizBox {
border : 1px solid black;
margin : auto;
}

.certaintyQuizColumn {
float : left;
}

/* text at the top of the column */
.certaint-score {
height : 20px;
margin-bottom: 10px;
padding : 0;
text-align: center;
font-size: 22px;
font-weight: bold;
}
.chart-grid{
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
grid-gap: 30px;
width: 100%;
margin: 0 auto;
}
.chart-title{
text-align: center;
font-weight: bold;
font-size: 16px;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #b3b3b3;
text-transform: uppercase;
background: #ecf0f1;
padding-top: 10px;
}
.certaint-list-two, .certaint-list{
margin: 0;
padding: 0;
list-style: none;
text-align: center;
position: absolute;
bottom: 0;
display: inline-block;
width: 100%;
}
.certaint-list-two li{
display: inline-block;
margin-right: 10px;
width: 40%;
}
.certaint-list li{
width: 50%;
margin: auto;
}
.certaint-list-two li:last-child{
margin-right: 0;
}
.answers-title{
text-align: center;
margin-bottom: 20px;
font-weight: bold;
}
.panel-certaint{
margin-bottom: 20px;
background-color: #FFF;
border: 1px solid #e4e4e4;;
box-shadow: 0 2px 2px rgba(204, 197, 185, 0.5);
padding: 10px;
border-radius: 6px;
}

.certaint-text{
text-align: center;
padding: 10px 5px;
}
.certaintyVerticalLine {
float: left;
border-left : 1px solid black;
font-size: 0;
}

.certaintyQuizClearer {
clear : both;
font-size: 0;
height:0
}
.chart-legend{
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
.chart-legend li{
display: inline-block;
padding-left: 10px;
padding-right: 10px;
margin-right: 10px;
margin-bottom: 10px;
}
.square_color4{
color: #1e9c55;
}
.square_color3{
color: #b1e183;
}
.square_color2{
color: #f6ba2a;
}
.square_color1{
color: #f79b88;
}
.square_color0{
color: #ed4040;
}
.levelbar_1 {
background-color: #1e9c55;
border: 1px solid #1e9c55;
}

.levelbar_2 {
background-color: #b1e183;
border: 1px solid #b1e183;
}

.levelbar_3 {
background-color: #f6ba2a;
border: 1px solid #f6ba2a;
}

.levelbar_4 {
background-color: #f79b88;
border: 1px solid #f79b88;
}

.levelbar_5 {
background-color: #ed4040;
border: 1px solid #ed4040;
}

table.certaintyTable {
margin : auto;
border: 1px solid #7FC5FF;
}

table.certaintyTable th {
text-align: center;
border-bottom: 1px solid #7FC5FF;
background-color: #c9e0ff;
}

table.certaintyTable td {
padding : 10px;
}

table.certaintyTable td.borderRight {
border-right: 1px dotted #7FC5FF;
}

table.certaintyTable td.firstLine {
vertical-align: top;
text-align: center;
}

table.certaintyTable th.globalChart {
font-size : 18pt;
line-height : 120%;
padding : 20px;
}

table.certaintyTable td.globalChart {
font-weight : bold;
}

/* Exercise clock*/
.count_down {
Expand Down
Loading

1 comment on commit 321095f

@jmontoyaa
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.