diff options
| author | Carson Fleming <cflems@cflems.net> | 2017-03-11 01:29:13 -0800 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2017-03-11 01:29:13 -0800 |
| commit | 3d0d3a86106ece4ea298ab2f262b3af5ff8a7728 (patch) | |
| tree | b75b297d980f5b061595cea8b29fe42503907684 /dash/css | |
| parent | a44a0e047a7582fe7e31743e1b03a17cf2987f73 (diff) | |
| download | bulletin-3d0d3a86106ece4ea298ab2f262b3af5ff8a7728.tar.gz | |
Almost there...
Diffstat (limited to 'dash/css')
| -rw-r--r-- | dash/css/dash.css | 36 | ||||
| -rw-r--r-- | dash/css/employer.css | 17 | ||||
| -rw-r--r-- | dash/css/notif.css | 30 |
3 files changed, 62 insertions, 21 deletions
diff --git a/dash/css/dash.css b/dash/css/dash.css index 29fb29f..b2dbbef 100644 --- a/dash/css/dash.css +++ b/dash/css/dash.css @@ -166,12 +166,10 @@ body { margin: 2em auto 1em auto; position: absolute; top: 0; - bottom: 0; left: 0; right: 0; width: 50%; - height: calc(100% - 5em); - padding: 1em; + padding: 1em 1em 2em 1em; box-shadow: 0px 0px 5px rgba(0,0,0,0.75); border-radius: 3px; background-color: #ffffff; @@ -344,10 +342,40 @@ h3 a:hover, h4 a:hover { height: 16px; } .norating { - height: 16px; + width: 86px !important; + height: 16px !important; } .star { width: 16px !important; height: 16px !important; margin: 0px 2px !important; } +#viewform { + width: 548px; + margin: 2em auto -1.25em; + font-size: 14pt; +} +#viewform select { + font-family: 'Myriad Pro'; + font-size: 12pt; + padding: 5px; + background-color: #ffffff; + border-style: solid; + border-width: 1px; + border-color: #dddddd; + border-radius: 5px; + color: #000000; + margin-left: 10px; +} +.adtrash { + display: block; + width: 32px; + height: 32px; + float: right; + background-image: url('../img/trash.png'); + background-size: contain; + background-repeat: no-repeat; +} +.adtrash:hover { + background-image: url('../img/trash_hover.png'); +} diff --git a/dash/css/employer.css b/dash/css/employer.css index f2a1c37..8737802 100644 --- a/dash/css/employer.css +++ b/dash/css/employer.css @@ -1,20 +1,3 @@ -#viewform { - width: 548px; - margin: 2em auto -1.25em; - font-size: 14pt; -} -#viewform select { - font-family: 'Myriad Pro'; - font-size: 12pt; - padding: 5px; - background-color: #ffffff; - border-style: solid; - border-width: 1px; - border-color: #dddddd; - border-radius: 5px; - color: #000000; - margin-left: 10px; -} .appcbtn { display: block; width: 16px; diff --git a/dash/css/notif.css b/dash/css/notif.css new file mode 100644 index 0000000..1e71824 --- /dev/null +++ b/dash/css/notif.css @@ -0,0 +1,30 @@ +#newsbody a { + text-decoration: none; + color: #000000; +} +#newsbody p { + display: block; + height: 16px; + font-size: 12pt; + padding: 16px 0; + margin: 0; +} +#newsbody p.unseen { + background-color: #ffffff; + font-weight: bold; +} +#newsbody p.seen { + background-color: #eeeeee; + box-shadow: 0px 0px 1px rgba(0,0,0,0.75); +} +#newsbody p.icon { + background-repeat: no-repeat; + background-size: 32px 32px; + background-position: 8px 8px; +} +#newsbody p.iconhired { + background-image: url('../img/check_blank.png'); +} +#newsbody p.iconapplied { + background-image: url('../img/star_empty.png'); +} |
