2015-07-17 14:34:42 +00:00
|
|
|
|
2015-01-23 13:09:30 +00:00
|
|
|
/* News panel */
|
2015-07-17 14:34:42 +00:00
|
|
|
|
2015-12-15 15:22:46 +00:00
|
|
|
.column
|
2015-01-23 13:09:30 +00:00
|
|
|
{
|
2015-07-17 14:34:42 +00:00
|
|
|
margin: .5em;
|
2015-12-15 15:22:46 +00:00
|
|
|
max-width: 120em;
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
2015-12-15 15:22:46 +00:00
|
|
|
.action-bar button.start-order
|
2015-01-23 13:09:30 +00:00
|
|
|
{
|
2015-12-15 15:22:46 +00:00
|
|
|
background-color: #EF5350;
|
|
|
|
margin: .7em .4em;
|
|
|
|
padding: .5em;
|
|
|
|
box-shadow: 0 0 0.4em rgba(1, 1, 1, 0.4);
|
|
|
|
}
|
|
|
|
.action-bar button.start-order:hover
|
|
|
|
{
|
|
|
|
background-color: #F44336;
|
2015-07-17 14:34:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* New */
|
|
|
|
|
2015-01-23 13:09:30 +00:00
|
|
|
.new
|
|
|
|
{
|
2015-07-17 14:34:42 +00:00
|
|
|
text-align: left;
|
2015-01-23 13:09:30 +00:00
|
|
|
background-color: white;
|
|
|
|
color: #222;
|
|
|
|
border: none;
|
2015-02-08 15:38:38 +00:00
|
|
|
border-radius: 0.1em;
|
2015-12-15 15:22:46 +00:00
|
|
|
box-shadow: 0 0.2em 0.2em rgba(1, 1, 1, 0.2);
|
2015-07-17 14:34:42 +00:00
|
|
|
margin: .5em;
|
|
|
|
}
|
|
|
|
.new .top
|
|
|
|
{
|
|
|
|
padding: 1.5em;
|
|
|
|
padding-bottom: 1em;
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
.new h2
|
|
|
|
{
|
2015-02-17 11:48:53 +00:00
|
|
|
font-size: 1.6em;
|
2015-01-31 01:05:12 +00:00
|
|
|
color: black;
|
2015-02-17 11:48:53 +00:00
|
|
|
font-weight: normal;
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
.new-info
|
|
|
|
{
|
2015-01-31 01:05:12 +00:00
|
|
|
font-size: 0.9em;
|
2015-01-23 13:09:30 +00:00
|
|
|
color: #444;
|
|
|
|
text-align: right;
|
2015-01-31 01:05:12 +00:00
|
|
|
margin: 0.8em 0;
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
.new-text
|
|
|
|
{
|
2015-01-31 01:05:12 +00:00
|
|
|
margin-top: 2em;
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
.new-text li
|
|
|
|
{
|
2015-01-31 01:05:12 +00:00
|
|
|
margin: 0.4em 0;
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
.new img
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
2015-07-17 14:34:42 +00:00
|
|
|
width: 100%;
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Survey */
|
|
|
|
|
2015-03-06 23:33:54 +00:00
|
|
|
.survey
|
2015-01-23 13:09:30 +00:00
|
|
|
{
|
|
|
|
position: absolute;
|
2015-01-31 01:05:12 +00:00
|
|
|
right: 0;
|
|
|
|
width: 6em;
|
|
|
|
top: 0;
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
2015-03-06 23:33:54 +00:00
|
|
|
.question, .survey-votes
|
2015-01-23 13:09:30 +00:00
|
|
|
{
|
|
|
|
text-align: center;
|
2015-01-31 01:05:12 +00:00
|
|
|
margin: 1em;
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
2015-03-06 23:33:54 +00:00
|
|
|
.answers .radio
|
2015-01-23 13:09:30 +00:00
|
|
|
{
|
|
|
|
text-align: right;
|
|
|
|
}
|
2015-03-06 23:33:54 +00:00
|
|
|
.survey button
|
2015-01-23 13:09:30 +00:00
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2015-02-08 15:38:38 +00:00
|
|
|
|