diff options
author | Arnaud Bos <arnaud.bos@aeon-consulting.fr> | 2012-10-20 02:52:02 +0200 |
---|---|---|
committer | Arnaud Bos <arnaud.bos@aeon-consulting.fr> | 2012-10-20 02:52:02 +0200 |
commit | 3ffd14fa4da0ca71e1f97a070973e4994bae8f61 (patch) | |
tree | dd7fea1a54417fc5df25eb559870c6ad06019ef1 /syte/static/less/modals.less | |
parent | 01a8792a5116a305368d9d98fa366923086e0633 (diff) | |
download | pelican-themes-3ffd14fa4da0ca71e1f97a070973e4994bae8f61.tar.gz |
add client side social integration, use webassets
Diffstat (limited to 'syte/static/less/modals.less')
-rw-r--r-- | syte/static/less/modals.less | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/syte/static/less/modals.less b/syte/static/less/modals.less deleted file mode 100644 index 522ecfa..0000000 --- a/syte/static/less/modals.less +++ /dev/null @@ -1,67 +0,0 @@ -//Modals -.modal-backdrop { - position: fixed; - z-index: 1000; - top: 0; - right: 0; - bottom: 0; - left: 0; - background: #000; - - &.fade, &.fade-large { - .transition(e('opacity .2s linear')); - .opacity(0); - } -} - -.modal-backdrop, .modal-backdrop.fade.in { - .opacity(50); -} - -.modal { - position: fixed; - top: 0; - left: 240px; - z-index: 1050; - overflow: auto; - width: 400px; - height: 100%; - background-color: #fff; - border-right: 1px solid @text-color; - .box-shadow(0 0 7px rgba(0,0,0,0.5)); -} - -.modal { - &.fade-large { - width: 700px; - .transition(e('left .4s ease-out')); - left: -1100px; - } - - &.fade { - .transition(e('left .4s ease-out')); - left: -700px; - } - - &.fade.in, &.fade-large.in { left: 240px; } -} - -.close { - float: right; - font-size: 26px; - line-height: 30px; - font-weight: bold; - color: #000; - background-color: #fff; - text-shadow: 0 1px 0 rgba(255,255,255,1); - - .opacity(20); - - &:hover { - color: #000; - text-decoration: none; - cursor: pointer; - .opacity(40); - } -} - |