diff options
Diffstat (limited to 'dash/css')
| -rw-r--r-- | dash/css/dash.css | 13 | ||||
| -rw-r--r-- | dash/css/jobs.css | 40 |
2 files changed, 52 insertions, 1 deletions
diff --git a/dash/css/dash.css b/dash/css/dash.css index 6e625a4..5af19f1 100644 --- a/dash/css/dash.css +++ b/dash/css/dash.css @@ -384,15 +384,26 @@ h3 a:hover, h4 a:hover { .adtrash:hover { background-image: url('../img/trash_hover.png'); } -.rate-widget { +.rate-widget .stars { display: flex; flex-direction: row; justify-content: center; } +.rate-widget .typereview { + margin: 0.25em auto; + width: 400px; + height: 120px; + border: 1px solid #dddddd; + border-radius: 5px; + padding: 5px; + resize: none; +} .ratebtn { margin: auto 5px; cursor: pointer; + height: 48px; } .ratebtn:hover { background-image: url('../img/star_given.png'); + background-size: contain; } diff --git a/dash/css/jobs.css b/dash/css/jobs.css new file mode 100644 index 0000000..fa2a70e --- /dev/null +++ b/dash/css/jobs.css @@ -0,0 +1,40 @@ +.israted::before { + content: ''; + display: inline-block; + width: 12px; + height: 12px; + background-size: contain; + background-position: center center; + background-repeat: no-repeat; + margin-right: 3px; +} +.job.rated .israted::before { + background-image: url('../img/check_hover.png'); +} +.job.unrated .israted::before { + background-image: url('../img/check_blank.png'); +} +.israted { + font-weight: bold; +} +.jobtitle a { + font-weight: normal; + font-style: italic; +} +.jobblurb { + text-align: center; +} +.ratingdata { + height: 32px; +} +.star { + height: 32px !important; + width: 32px !important; +} +.ratecomment { + margin: 1em 0 0 0; + padding: 1em; + background-color: #ffffff; + border-radius: 5px; + box-shadow: 0px 0px 4px rgba(0,0,0,0.75); +} |
