source: Dev/branches/rest-dojo-ui/client/rft/css/LESS/variables.less @ 403

Last change on this file since 403 was 403, checked in by tjcschipper, 13 years ago
  • Switched to LESS for stylesheets. Most of the conversion is done, it's only (predictably) the color system that is giving trouble. Plan for next week: get rid of the inherit stuff, just use proper color classes.

-> Use only a minimal .*colorName* .bg/.text class combination that doesn't inherit. Do anything more complicated than that in a page-specific stylesheet.

File size: 1.3 KB
Line 
1// Graytones
2@darkest: #111111;
3@base: #333333;
4@base1: #444444;
5@base2: #555555;
6@headers: #999999;
7@text: #ffffff;
8
9// Colours
10@blue: #0072bc;
11@blue_light: #0794d1;
12@green: #3aa605;
13@green_light: #79ca0a;
14@orange: #ff5b12;
15@orange_light: #ff9140;
16@purple: #6529b7;
17@purple_light: #993dec;
18@red: #8c0310;
19@red_light: #bd0013;
20
21// Layout related
22@std_height: 24px;
23@std_offset: 4px;
24@std_offset_big: 8px;
25@transition_time: 0.2s;
26@tab_height: 30px;
27@tab_width: 200px;
28
29// Headers and fonts
30@h1Size: 48px;
31@h2Size: 22px;
32@h3Size: 18px;
33@h4Size: 16px;
34@font_size: 13px;
35@font: 'Segoe UI', Helvetica, Verdana, Arial, sans-serif;
36
37// Icons
38@icon_mainSize: 32px;
39@icon_midSize: 24px;
40@icon_smallSize: 16px;
41
42// MainMenu
43@mm_blockheight: 400px;
44@mm_blockwidth: 400px;
45@mm_blockmargin: 16px;
46@mm_font_size: 32px;
47
48// Buttons
49@button_large_height: 24px;
50@button_large_spacing: @std_offset_big * 2;
51@button_large_font_size: @button_large_height / 1.2;
52
53@button_block_height: 24px;
54@button_block_spacing: 0;
55@button_block_font_size: @font_size;
56
57@button_inline_height: 24px;
58@button_inline_spacing: 0;
59@button_inline_font_size: @font_size;
60
61@button_mainmenu_height: 30px;
62@button_mainmenu_spacing: 5px;
63@button_mainmenu_padding: 4px;
64@button_mainmenu_font_size: 24px;
65@button_mainmenu_font_grow: @button_mainmenu_font_size / 12;
Note: See TracBrowser for help on using the repository browser.