diff options
author | m-r-r <raybaudroigm@gmail.com> | 2012-05-28 13:22:36 +0200 |
---|---|---|
committer | m-r-r <raybaudroigm@gmail.com> | 2012-05-28 13:22:36 +0200 |
commit | 27887830c872085f41494f771177b2cfd4b4dd12 (patch) | |
tree | 24151360a68327cd2149e90aa6ca59527d1b7281 /dev-random/static | |
parent | fe2acd8e538413a43ae1bc59b21be15a0d092853 (diff) | |
download | pelican-themes-27887830c872085f41494f771177b2cfd4b4dd12.tar.gz |
[dev-random] The github link is displayed inline on small devices
Diffstat (limited to 'dev-random/static')
-rw-r--r-- | dev-random/static/css/main.css | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/dev-random/static/css/main.css b/dev-random/static/css/main.css index aaccde6..2a18220 100644 --- a/dev-random/static/css/main.css +++ b/dev-random/static/css/main.css @@ -210,20 +210,20 @@ table tr { /******************************************************************************/ /* Misc */ /******************************************************************************/ - -#github-link { - display: block; - position: absolute; - top: 0; - left: 0; - width: 50px; - height: 100px; - background-image: url("../img/corner.png"); - margin: 0; - border: none; - text-decoration: none; - color: transparent; - font-size: 0px; - text-decoration: none; +@media screen and (min-width: 600px) { + #github-link { + display: block; + position: absolute; + top: 0; + left: 0; + width: 50px; + height: 100px; + background-image: url("../img/corner.png"); + margin: 0; + border: none; + text-decoration: none; + color: transparent; + font-size: 0px; + text-decoration: none; + } } - |