Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activities/web/stylesheet.py
blob: 0834ddd1343b6adf776c096d7b94163ada544ae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import gtk

_screen_factor = gtk.gdk.screen_width() / 1200.0

links_Bubble = {
	'box-width'   : int(250.0 * _screen_factor)
}

links_Text = {
	'color'  : 0x000000FF,
	'font'   : '14px',
	'padding' : 6
}

links_Box = {
	'background_color' : 0x646464ff,
	'padding'          : 4
}