aboutsummaryrefslogtreecommitdiffstats
path: root/dev-random/static/css
diff options
context:
space:
mode:
authorm-r-r <raybaudroigm@gmail.com>2012-06-03 12:24:42 +0200
committerm-r-r <raybaudroigm@gmail.com>2012-06-03 12:24:42 +0200
commite66da8b11bc410155dcb0c06e3fd585b59017f0e (patch)
tree1c1abe2d536cb18d591cf5518157107ffaa95228 /dev-random/static/css
parent27887830c872085f41494f771177b2cfd4b4dd12 (diff)
downloadpelican-themes-e66da8b11bc410155dcb0c06e3fd585b59017f0e.tar.gz
[dev-random] Added an awesome tag cloud with µTags
Diffstat (limited to 'dev-random/static/css')
-rw-r--r--dev-random/static/css/main.css37
1 files changed, 36 insertions, 1 deletions
diff --git a/dev-random/static/css/main.css b/dev-random/static/css/main.css
index 2a18220..e9df3d2 100644
--- a/dev-random/static/css/main.css
+++ b/dev-random/static/css/main.css
@@ -190,7 +190,7 @@ table tr {
}
-.page .foot p {
+.page-footer p {
display: block;
width: 60%;
@@ -210,6 +210,9 @@ table tr {
/******************************************************************************/
/* Misc */
/******************************************************************************/
+
+// GitHub button
+
@media screen and (min-width: 600px) {
#github-link {
display: block;
@@ -227,3 +230,35 @@ table tr {
text-decoration: none;
}
}
+
+
+// Tag list
+
+ul#tagslist {
+ display: block;
+ width: 75%;
+ margin: 1em auto;
+ list-style-type: none;
+}
+
+ul#tagslist li {
+ display: inline-block;
+ list-style-type: none;
+ margin: .5em .2em;
+ transition: transform 1s ease 0s;
+ -o-transition: -o-transform 1s ease 0s;
+ -ms-transition: -ms-transform 1s ease 0s;
+ -moz-transition: -moz-transform 1s ease 0s;
+ -webkit-transition: -webkit-transform 1s ease 0s;
+}
+
+
+
+ul#tagslist li:hover {
+ transform: rotate(0deg) scale(1.2, 1.2) !important;
+ -o-transform: rotate(0deg) scale(1.2, 1.2) !important;
+ -ms-transform: rotate(0deg) scale(1.2, 1.2) !important;
+ -moz-transform: rotate(0deg) scale(1.2, 1.2) !important;
+ -webkit-transform: rotate(0deg) scale(1.2, 1.2) !important;
+}
+