From e22fb1b2a491936cd7ce976fb17f679a89b617fe Mon Sep 17 00:00:00 2001 From: Guillaume Vincent Date: Thu, 24 Dec 2015 08:13:11 +0100 Subject: [PATCH] improve featurettes rendering --- app/components/lesspass-features.vue | 23 ++++++++++++++++++++++- static/images/check.png | Bin 0 -> 363 bytes 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 static/images/check.png diff --git a/app/components/lesspass-features.vue b/app/components/lesspass-features.vue index a6b1525..242a62b 100644 --- a/app/components/lesspass-features.vue +++ b/app/components/lesspass-features.vue @@ -2,18 +2,39 @@ .lesspass-features { background-color: #0275D8; } + + .lesspass-features ul { + line-height: 1.8em; + font-size: 1.15em; + margin: 0px auto; + padding: 0px; + list-style-type: none; + } + + .lesspass-features ul li::before { + content: ""; + display: inline-block; + width: 24px; + height: 24px; + background: transparent url("../images/check.png") no-repeat scroll center center / 24px 24px; + margin-right: 10px; + position: relative; + top: 4px; + } +