خب دوست عزیز برای استایل دادن دکمه ها
فایل css:
.button { display: inline-block; font-weight: bold; color: #fff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5); font-size: 12px; line-height: 20px; padding: 5px 12px; -webkit-border-radius: 1px; border-radius: 1px; position: relative; margin: 0 10px 10px 0;}.button:after { position: absolute; display: block; content: ""; top: -1px; left: -1px; right: -1px; bottom: -1px; z-index: -1; -webkit-border-radius: 2px; border-radius: 2px; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);}.button:active { -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(0, 0, 0, 0.02) !important; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(0, 0, 0, 0.02) !important;}.button:active:after { -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5) !important; box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5) !important;}.black-button:hover { -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 0 #7c8184; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 0 #7c8184; background-color: #676b6d; background-image: -webkit-gradient(linear, left top, left bottom, from(#676b6d), to(#484a4c)); background-image: -webkit-linear-gradient(top, #676b6d, #484a4c); background-image: -moz-linear-gradient(top, #676b6d, #484a4c); background-image: -o-linear-gradient(top, #676b6d, #484a4c); background-image: -ms-linear-gradient(top, #676b6d, #484a4c); background-image: linear-gradient(top, #676b6d, #484a4c); filter: progid

XImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#676b6d', EndColorStr='#484a4c');}.black-button { -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 0 #6f7476; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 0 #6f7476;}.black-button,.black-button:active { background-color: #5c6062; background-image: -webkit-gradient(linear, left top, left bottom, from(#5c6062), to(#434547)); background-image: -webkit-linear-gradient(top, #5c6062, #434547); background-image: -moz-linear-gradient(top, #5c6062, #434547); background-image: -o-linear-gradient(top, #5c6062, #434547); background-image: -ms-linear-gradient(top, #5c6062, #434547); background-image: linear-gradient(top, #5c6062, #434547); filter: progid

XImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#5c6062', EndColorStr='#434547');}.black-button:after { background-color: #37383a; background-image: -webkit-gradient(linear, left top, left bottom, from(#37383a), to(#252627)); background-image: -webkit-linear-gradient(top, #37383a, #252627); background-image: -moz-linear-gradient(top, #37383a, #252627); background-image: -o-linear-gradient(top, #37383a, #252627); background-image: -ms-linear-gradient(top, #37383a, #252627); background-image: linear-gradient(top, #37383a, #252627); filter: progid

XImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#37383a', EndColorStr='#252627');}.black-button:active:after { background-color: #323435; background-image: -webkit-gradient(linear, left top, left bottom, from(#323435), to(#292b2b)); background-image: -webkit-linear-gradient(top, #323435, #292b2b); background-image: -moz-linear-gradient(top, #323435, #292b2b); background-image: -o-linear-gradient(top, #323435, #292b2b); background-image: -ms-linear-gradient(top, #323435, #292b2b); background-image: linear-gradient(top, #323435, #292b2b); filter: progid

XImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#323435', EndColorStr='#292b2b');}این هم برای فراخوانیش :
<more><a href="@href"><a class="button black-button" href="#">ادامه مطلب</a></more>برای استفاده از بقیه ی دکمه ها :
اگه به فایل index.html همون فایلی که گذاشتی رجوع کنی کدهای دکمه هارو مشاهده می کنی :
<div class="page-center"> <a class="button black-button" href="#">ادامه مطلب</a> <a class="button grey-button" href="#">ادامه مطلب</a> <a class="button plum-button" href="#">ادامه مطلب</a> <a class="button purple-button" href="#">ادامه مطلب</a> <a class="button blue-button" href="#">ادامه مطلب</a> <a class="button azure-button" href="#">ادامه مطلب</a> <a class="button pink-button" href="#">ادامه مطلب</a> <a class="button red-button" href="#">ادامه مطلب</a> <a class="button orange-button" href="#">ادامه مطلب</a> <a class="button green-button" href="#">ادامه مطلب</a></div>اگه به فایل style.css موجود تو پوشه css بری ، استایل ها رو می بینی ، من این استایل رو انتخاب کرده بودم : black-button ؛ شما هم که هر کدوم رو میخوای فقط کافیه استایلش رو کپی کنی
مثلا این رو میخوای : grey-button میری تو استایل ها این رو جست و جو میکنی :grey-button هر چی فایل با همین اسم پیدا شد کپی می کنی (انشاءالله که متوجه شده باشی ، چون نمیدونم چی گفتم!)