diff --git a/dist/assets/external.png b/dist/assets/external.png new file mode 100644 index 0000000..774921a Binary files /dev/null and b/dist/assets/external.png differ diff --git a/dist/css/main.css b/dist/css/main.css index eb292f5..da59da8 100644 --- a/dist/css/main.css +++ b/dist/css/main.css @@ -218,7 +218,7 @@ div.container > header .see-all-content:after { float: right; background: #380497; clear: both; - margin-top: 28px; + margin-top: 30px; left: 0; position: absolute; } @@ -245,6 +245,13 @@ div.container > header .see-all-content:after { color: #380497; text-decoration: underline; } +.message article .content a.research-link:after { + content: ' '; + width: 16px; + height: 16px; + background: transparent url("../assets/external.png") no-repeat center center; + display: inline-block; +} footer { font-family: "Clear Sans Regular", sans-serif; color: #000073; diff --git a/src/less/main.less b/src/less/main.less index 3cac6ce..1c76e9d 100644 --- a/src/less/main.less +++ b/src/less/main.less @@ -184,7 +184,7 @@ div.container > header { float: right; background: @violet; clear: both; - margin-top: 28px; + margin-top: 30px; left: 0; position: absolute; } @@ -209,6 +209,14 @@ div.container > header { .clearsans; color: @violet; text-decoration: underline; + &:after { + content: ' '; + width: 16px; + height: 16px; + background: transparent url("../assets/external.png") no-repeat center center; + display: inline-block; + + } } } }