Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activities/web/stylesheet.py
diff options
context:
space:
mode:
Diffstat (limited to 'activities/web/stylesheet.py')
-rw-r--r--activities/web/stylesheet.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/activities/web/stylesheet.py b/activities/web/stylesheet.py
new file mode 100644
index 0000000..bd0a6a6
--- /dev/null
+++ b/activities/web/stylesheet.py
@@ -0,0 +1,8 @@
+import gtk
+
+_screen_factor = gtk.gdk.screen_width() / 1200.0
+
+bubble_Box = {
+ 'box-width' : int(150.0 * _screen_factor),
+ 'box-height' : int(50.0 * _screen_factor)
+}