diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-11-08 12:39:57 +0100 |
---|---|---|
committer | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-11-10 14:53:01 +0100 |
commit | c530e84843444a40804e0c2b038c2ec53fe411b2 (patch) | |
tree | 1a9eebf49fd85027ba472bad8c178d686bad8d56 /site/static/styles/scss/_artwork.scss |
webdocs-agl: added developer website template
Change-Id: I4a45ee0ad5dd0c29a6d6876a0e02cd5550c010e9
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'site/static/styles/scss/_artwork.scss')
-rw-r--r-- | site/static/styles/scss/_artwork.scss | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/site/static/styles/scss/_artwork.scss b/site/static/styles/scss/_artwork.scss new file mode 100644 index 0000000..1a75c96 --- /dev/null +++ b/site/static/styles/scss/_artwork.scss @@ -0,0 +1,44 @@ + +.artwork { + .iconset { + padding: 100px 0; + .images { + background-color: rgb(223, 223, 223); + border: 3px dashed white; + padding: 20px; + img { + max-width: 100%; + } + } + } + + .button { + display: block; + background: $baseurl+"/static/img/sprite.png" no-repeat; + background-color: #4cc2e4; + background-position: 100% -171px; + width: 310px; + padding: 16px; + color: #fff; + font-size: 24px; + text-decoration: none; + -webkit-transition: background 0.1s linear; + -moz-transition: background 0.1s linear; + transition: background 0.1s linear; + label { + display: block; + font-size: 0.5em; + height: 16px; + } + } + + .button:hover { + background-color: #4cd6fc; + color: #fff; + text-decoration: none; + } + + .button a:hover { + color: #4cc2e4; + } +} |