source: Dev/trunk/src/client/qed-client/css/variables.less @ 492

Last change on this file since 492 was 492, checked in by hendrikvanantwerpen, 11 years ago
  • Enable/disable buttons on content change.
  • One place to do date formatting, because it was going wrong again.
  • Serialize questions in survey properly.
  • _ComplexValueMixin consumes submit events, but does trigger outer forms if present.
  • Trigger dialog show/hide for login only after previous effect is finished.
  • Check that documents are actually valid, not just that validator returned a result.
  • Validate email and timestamp formats.
  • Prepared for live runs.
File size: 1.8 KB
Line 
1// Graytones
2@darkest: #111111;
3@base: #333333;
4@base1: #444444;
5@base2: #555555;
6@headers: #999999;
7@text: #ffffff;
8@disabledtext: #777777;
9
10// Colours
11@blue: #0072bc;
12@blue_light: #0794d1;
13// @green: #3aa605;                                     For now use the newer colours. Almost negligible difference, but looks better on non-calibrated monitors
14// @green_light: #79ca0a;
15@green: #25a000;
16@green_light: #63c400;
17
18@orange: #ff5b12;
19@orange_light: #ff9140;
20@purple: #6529b7;
21@purple_light: #993dec;
22@red: #8c0310;
23@red_light: #bd0013;
24
25// Layout related
26@std_height: 24px;
27@std_offset: 4px;
28@std_offset_big: 8px;
29@transition_time: 0.2s;
30@tab_height: 30px;
31@tab_width: 200px;
32
33// Headers and fonts
34@h1Size: 48px;
35@h2Size: 22px;
36@h3Size: 18px;
37@h4Size: 16px;
38@font_size: 13px;
39@font: 'Segoe UI', Helvetica, Verdana, Arial, sans-serif;
40
41// Icons
42@icon_mainSize: 32px;
43@icon_midSize: 24px;
44@icon_smallSize: 16px;
45
46// IndexMenu
47@indexmenu_blockheight: 400px;
48@indexmenu_blockwidth: 400px;
49@indexmenu_blockmargin: 16px;
50@indexmenu_font_size: 32px;
51
52// Mainmenu
53@button_mainmenu_height: 30px;
54@button_mainmenu_spacing: 5px;
55@button_mainmenu_padding: 4px;
56@button_mainmenu_font_size: 24px;
57@button_mainmenu_font_grow: @button_mainmenu_font_size / 12;
58
59// Index menu
60@button_indexmenu_height: 32px;
61@button_indexmenu_content_size: 24px;
62@button_indexmenu_font_size: @h1Size;
63
64// SessionObject
65@sessionobject_size: 100px;
66@sessionObject_spacing: 2 * @std_offset_big;
67
68// Buttons
69@button_large_height: 24px;
70@button_large_spacing: @std_offset_big * 2;
71@button_large_font_size: @button_large_height / 1.2;
72
73@button_block_height: 24px;
74@button_block_spacing: 0;
75@button_block_font_size: @font_size;
76
77@button_inline_height: 24px;
78@button_inline_spacing: 0;
79@button_inline_font_size: @font_size;
Note: See TracBrowser for help on using the repository browser.