summaryrefslogtreecommitdiff
path: root/website/static
diff options
context:
space:
mode:
authorFelipe López <felipe.lopez@openmailbox.org>2015-05-24 10:26:50 -0500
committerFelipe López <felipe.lopez@openmailbox.org>2015-05-24 10:26:50 -0500
commit25d386d8d227d249fe2e0cf46eca26106b62151d (patch)
treec6e0f28e46b95cd2e8fdde325cb7727e233cc166 /website/static
parent15371b8115dd8d7354be3304b46b41b93c162065 (diff)
downloadguix-artwork-25d386d8d227d249fe2e0cf46eca26106b62151d.tar
guix-artwork-25d386d8d227d249fe2e0cf46eca26106b62151d.tar.gz
website: download: simplify download options.
Diffstat (limited to 'website/static')
-rw-r--r--website/static/base/css/download.css45
1 files changed, 42 insertions, 3 deletions
diff --git a/website/static/base/css/download.css b/website/static/base/css/download.css
index fab1bc6..8477da6 100644
--- a/website/static/base/css/download.css
+++ b/website/static/base/css/download.css
@@ -1,9 +1,48 @@
/*
Public domain 2015 Luis Felipe López Acevedo. All rights waived.
<felipe.lopez@openmailbox.org>
-
- NOTE The default style is targeted at screens with a width less than
- 1024 pixels.
*/
@import url("article.css");
+
+
+.download-box {
+ border-color: #CCC;
+ border-style: none none solid none;
+ border-width: thin;
+ color: #4D4D4D;
+ font-size: 0.9em;
+ padding: 10px;
+ text-align: center;
+}
+
+.hlink-download, .hlink-download:link, .hlink-download:visited {
+ background-color: #E6E6E6;
+ border-style: none;
+ border-radius: 5px;
+ color: black;
+ display: inline-block;
+ font-weight: bold;
+ margin: 5px;
+ padding: 5px 10px;
+}
+
+.hlink-download:active, .hlink-download:focus, .hlink-download:hover {
+ background-color: #F4BB15;
+}
+
+.hlink-signature {
+ display: inline-block;
+ margin: 0px 5px;
+}
+
+
+@media screen and (min-width: 800px) {
+ .download-box {
+ border-style: solid;
+ display: inline-block;
+ margin: 10px;
+ vertical-align: top;
+ width: 270px;
+ }
+}