diff --git a/client/less/main.less b/client/less/main.less index 4a86571c99..94c0e1d77a 100644 --- a/client/less/main.less +++ b/client/less/main.less @@ -10,7 +10,8 @@ html,body,div,span,a,li,td,th { } bold { - font-weight: 500; + font-family: 'Lato-Bold', sans-serif; + font-weight: Bold; } li, .wrappable { diff --git a/common/app/routes/Jobs/components/ShowJob.jsx b/common/app/routes/Jobs/components/ShowJob.jsx index eb8bab36e0..d7076f0a5e 100644 --- a/common/app/routes/Jobs/components/ShowJob.jsx +++ b/common/app/routes/Jobs/components/ShowJob.jsx @@ -1,5 +1,5 @@ import React, { PropTypes } from 'react'; -import { Row, Col, Thumbnail, Panel } from 'react-bootstrap'; +import { Well, Row, Col, Thumbnail, Panel } from 'react-bootstrap'; const defaultImage = 'https://s3.amazonaws.com/freecodecamp/camper-image-placeholder.png'; @@ -85,13 +85,18 @@ export default React.createClass({

{ description }

- - - How do I apply? { howToApply } - - + + + + How do I apply? +
+
+ { howToApply } + +
+
diff --git a/public/css/lato.css b/public/css/lato.css index 57941353cc..149eab749f 100644 --- a/public/css/lato.css +++ b/public/css/lato.css @@ -7,3 +7,8 @@ font-family: "Lato Light"; src: url(/fonts/Lato-Light.ttf) format("truetype"); } + +@font-face { + font-family: "Lato Bold"; + src: url(/fonts/Lato-Bold.ttf) format("truetype"); +} diff --git a/public/fonts/Lato-Bold.ttf b/public/fonts/Lato-Bold.ttf new file mode 100755 index 0000000000..74343694e2 Binary files /dev/null and b/public/fonts/Lato-Bold.ttf differ