diff options
| author | Franck Cuny <franck@lumberjaph.net> | 2013-07-25 18:35:25 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@lumberjaph.net> | 2013-07-25 18:35:25 -0700 |
| commit | 3d46aca2693381e81045210c41e782431acd1ed9 (patch) | |
| tree | 410067ba6ce89d6a371e1c06643a14b2bede85e5 /assets/less/site.less | |
| parent | new post - patch.pm (diff) | |
| parent | Add a page with my talks. (diff) | |
| download | lumberjaph-3d46aca2693381e81045210c41e782431acd1ed9.tar.gz | |
Merge branch 'design'
* design:
Add a page with my talks.
Remove more files.
use index.atom for our feed.
add openid to our header.
remove unused layout templates.
I don't need tags.
Remove useless empty page.
First attempt with the new theme.
attempt for a new design
Diffstat (limited to '')
| -rw-r--r-- | assets/less/site.less | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/assets/less/site.less b/assets/less/site.less new file mode 100644 index 0000000..b81e95e --- /dev/null +++ b/assets/less/site.less @@ -0,0 +1,66 @@ +// Selection +// -------------------------------------------------- + +::-moz-selection { + background-color: lighten(@base-color, 65%); + color: @base-color; + text-shadow: none; +} +::selection { + background-color: lighten(@base-color, 65%); + color: @base-color; + text-shadow: none; +} + +// Webkit Custom Scrollbar +// -------------------------------------------------- +::-webkit-scrollbar { + width: 12px; + height: 12px; +} +/* Track */ +::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px fade(@black,30); + -webkit-border-radius: 10px; + border-radius: 10px; +} +/* Handle */ +::-webkit-scrollbar-thumb { + -webkit-border-radius: 10px; + border-radius: 10px; + background: rgba(0,0,0,0.5); +} +::-webkit-scrollbar-thumb:window-inactive { + background: rgba(0,0,0,0.2); +} + +// Global Classes +// -------------------------------------------------- + +.wrap { + margin: 0 auto; +} +.all-caps { + text-transform: uppercase; +} +.pull-left { + float: left; +} +.pull-right { + float:right; +} +.unstyled-list { + list-style: none; + margin-left: 0; + padding-left: 0; + li { + list-style-type: none; + } +} + +// Global Transition +// --------------------------------------------------- + +b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a { + .transition(all .2s ease); +}
\ No newline at end of file |
