diff options
| author | Carson Fleming <cflems@cflems.net> | 2017-03-09 00:28:02 -0500 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2017-03-09 00:28:02 -0500 |
| commit | a44a0e047a7582fe7e31743e1b03a17cf2987f73 (patch) | |
| tree | 1bb28593eb493cac175f2ed42ab108a4248e1ec1 /dash/css | |
| parent | f75fc7b47735ed73535478e4d70e62694247a586 (diff) | |
| download | bulletin-a44a0e047a7582fe7e31743e1b03a17cf2987f73.tar.gz | |
Created the ability to post ads, rating framework
Diffstat (limited to 'dash/css')
| -rw-r--r-- | dash/css/dash.css | 22 | ||||
| -rw-r--r-- | dash/css/employer.css | 12 | ||||
| -rw-r--r-- | dash/css/post.css | 65 |
3 files changed, 96 insertions, 3 deletions
diff --git a/dash/css/dash.css b/dash/css/dash.css index b814fb0..29fb29f 100644 --- a/dash/css/dash.css +++ b/dash/css/dash.css @@ -54,8 +54,8 @@ body { font-weight: normal; text-decoration: none; color: #000000; - padding: 17px 0px; - margin: 0px 0.5em; + padding: 17px 0.5em; + margin: 0px; } #navlinks a:hover { color: #fb4d00; @@ -154,10 +154,14 @@ body { background-size: contain; background-repeat: no-repeat; } -.jobxbtn:hover, .appxbtn:hover { +.jobxbtn:hover { background-image: url('../img/x_hover.png'); cursor: pointer; } +.appxbtn:hover { + background-image: url('../img/x_red.png'); + cursor: pointer; +} #fulljob { margin: 2em auto 1em auto; position: absolute; @@ -335,3 +339,15 @@ h3 a:hover, h4 a:hover { .cbox .hr { width: 90%; } +.ratingdata { + display: block; + height: 16px; +} +.norating { + height: 16px; +} +.star { + width: 16px !important; + height: 16px !important; + margin: 0px 2px !important; +} diff --git a/dash/css/employer.css b/dash/css/employer.css index 95d6049..f2a1c37 100644 --- a/dash/css/employer.css +++ b/dash/css/employer.css @@ -15,3 +15,15 @@ color: #000000; margin-left: 10px; } +.appcbtn { + display: block; + width: 16px; + height: 16px; + float: left; + background-image: url('../img/check_blank.png'); + background-size: contain; + background-repeat: no-repeat; +} +.appcbtn:hover { + background-image: url('../img/check_hover.png'); +} diff --git a/dash/css/post.css b/dash/css/post.css new file mode 100644 index 0000000..378c439 --- /dev/null +++ b/dash/css/post.css @@ -0,0 +1,65 @@ +#postform input, #postform textarea, #postform select { + margin-top: 0.35em; + margin-bottom: 0.35em; + font-family: 'Myriad Pro'; + font-size: 12pt; +} +#postform p, #postform h3, #postform h4 { + margin: 0; +} +#postform input[type=text], #postform input[type=password], #postform input[type=number], #postform input[type=datetime-local] { + width: 248px; + padding: 6px 12px; + border: 1px solid #dddddd; + border-radius: 5px; +} +#postform input[type=number] { + width: 64px; +} +#postform input[type=submit], #postform input[type=button], #postform button { + background-color: #fb4d00; + padding: 5px 20px 3px; + border-style: none; + border-radius: 10px; + color: #ffffff; + cursor: pointer; +} +#postform input[type=submit]:hover, #postform input[type=button]:hover, #postform button:hover { + background-color: #fb7700; +} +#postform textarea { + margin: 0.25em auto; + width: 450px; + height: 150px; + resize: none; + border: 1px solid #dddddd; + border-radius: 5px; + padding: 5px; +} +#postform select { + padding: 5px; + background-color: #ffffff; + border-style: solid; + border-width: 1px; + border-color: #dddddd; + border-radius: 5px; + color: #000000; +} +#pfpt1 { + text-align: left; + padding: 0 2em; +} +#pfpt2 { + padding: 0 2em; +} +#pfpt2 input { + margin: 0.25em 5px; +} +#inptitle { + width: 90%; +} +#postform .err { + margin: 1em; + color: #a00000; + font-weight: bold; +} |
