]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy/light/_base.less
Merge branch 'master' of github.com:annando/friendica
[friendica.git] / view / theme / dispy / light / _base.less
1 // _base.less
2 //
3 // the base file for dispy's light "sub-theme".
4 //
5 // Notes:
6 // this is used to define mixins (think of them as functions)
7 // and variables. the mixins are the ".foo () {}" things, vars are
8 // like "@bar".
9 //
10 // (BTW, this will make it a LOT easier to maintain.)
11 // 
12 // Dev. Note: the // style comments don't show up at all when
13 // you "compile" the css (with `lessc`), but css (/**/) comments
14 // do. i use them to our advantage :).
15
16 // import our reset styles first
17 @import "../css/reset";
18
19 //* backgrounds */
20 @dk_bg_colour: #2e3436;
21 @bg_colour: #eeeeec;
22 @bg_alt_colour: #2e302e;
23 @med_bg_colour: #4e4f4e;
24 @menu_bg_colour: #555753;
25
26 //* font colour, aka color: */
27 @lt_main_colour: #ffff99;
28 @main_colour: #111;
29 @main_alt_colour: #999999;
30 // darken(@main_alt_colour, 6.5%) > #888888
31 // //#9eabb0
32 // darken(@main_alt_colour, 10%) > #777777
33 // darken(@main_alt_colour, 20%) > #666666
34 // darken(@main_alt_colour, 26.8%) > #555555
35 // darken(@main_alt_colour, 33.5%) > #444444
36 // darken(@main_alt_colour, 40%) > #333333
37 //
38 // lighten(@main_alt_colour, 26.5%) > #dddddd
39 // lighten(@main_alt_colour, 20%) > #cccccc
40 // lighten(@main_alt_colour, 13.5%) > #bbbbbb
41 // lighten(@main_alt_colour, 6.5%) > #aaaaaa
42 // lighten(@main_alt_colour, 30%)
43 @disabled_colour: #dddddd;
44 @shiny_colour: #f2f2c3;
45 @red_orange: #ff2000;
46 @orange: #f8911b;
47 @lt_orange: #fcaf3e;
48 @shadow_colour: @main_colour;
49 @lt_shadow_colour: #888888;
50 @friendica_blue: #3465a4;
51 @border2: #babdb6;
52 @group_show: #9ade00;
53 @group_hide: #ff4141;
54 @notice: #511919;
55 @info: #364e59;
56 @alert: #ff0000;
57
58 @lt_main_colour: lighten(@bg_colour, 10%);
59 @dk_main_colour: darken(@bg_colour, 10%);
60
61 //* links */
62 @link_colour: #3465a4;
63 @dk_link_colour: darken(@link_colour, 10%);
64 @lt_link_colour: lighten(@link_colour, 10%);
65 //@hover_colour: #729fcf;
66 @hover_colour: @dk_link_colour;
67
68 // other colours
69 @med_border_colour: #babdd6;
70
71 //* box shadows */
72 @menu_shadow: 5px 0 10px 0 @shadow_colour;
73 @main_shadow: 3px 3px 3px 10px 0 @shadow_colour;
74
75 // default here was @main_shadow
76 .box_shadow(@h: 5px, @v: 5px, @blur: 5px, @spread: 0px, @colour: @shadow_colour) {
77         -moz-box-shadow: @h @v @blur @spread @colour;
78         -o-box-shadow: @h @v @blur @spread @colour;
79         -webkit-box-shadow: @h @v @blur @spread @colour;
80         -ms-box-shadow: @h @v @blur @spread @colour;
81         box-shadow: @h @v @blur @spread @colour;
82 }
83 //* http://css-tricks.com/snippets/css/css-box-shadow/
84 //* box-shadow:
85 //* 1. The horizontal offset of the shadow, positive means
86 //* the shadow will be on the right of the box, a negative
87 //* offset will put the shadow on the left of the box.
88 //* 2. The vertical offset of the shadow, a negative one
89 //* means the box-shadow will be above the box, a
90 //* positive one means the shadow will be below the box.
91 //* 3. The blur radius (optional), if set to 0 the shadow
92 //* will be sharp, the higher the number, the more blurred
93 //* it will be.
94 //* 4. The spread radius (optional), positive values increase
95 //* the size of the shadow, negative values decrease the size.
96 //* Default is 0 (the shadow is same size as blur).
97 //* 5. Colo[u]r
98 //*/
99
100 //* text-shadow */
101 .text_shadow (@h: 1px, @v: 1px, @c: @shadow_colour) {
102         -moz-text-shadow: @h @v @c;
103         -o-text-shadow: @h @v @c;
104         -webkit-text-shadow: @h @v @c;
105         -ms-text-shadow: @h @v @c;
106         text-shadow: @h @v @c;
107 }
108 //* transitions */
109 .transition (@type: all, @dur: 0.75s, @effect: ease-in-out) {
110     -webkit-transition: @arguments;
111     -moz-transition: @arguments;
112     -o-transition: @arguments;
113     -ms-transition: @arguments;
114     transition: @arguments;
115 }
116
117 //* borders */
118 .borders (@size: 1px, @style: solid, @colour: @main_colour) {
119         border: @size @style @colour;
120 }
121 .med_borders (@sz: 2px, @st: solid, @c: @med_border_colour) {
122         border: @sz @st @c;
123 }
124 //* rounded box corners */
125 .rounded_corners (@r: 5px) {
126         -o-border-radius: @r;
127         -webkit-border-radius: @r;
128         -moz-border-radius: @r;
129         -ms-border-radius: @r;
130         border-radius: @r;
131 }
132 .text_overflow (@t: ellipsis) {
133         -moz-text-overflow: @t;
134         -ms-text-verflow: @t;
135         -o-text-overflow: @t;
136         -webkit-text-overflow: @t;
137         text-overflow: @t;
138 }
139
140 //* pre wrap */
141 .wrap () {
142         white-space: pre-wrap;
143         white-space: pre;
144         word-wrap: none;
145 }
146 //* font size sizing */
147 .default_font () {
148         font-size: 14pt;
149         line-height: 1.1em;
150         font-family: sans-serif;
151 }
152 .font_size_adjust () {
153         -webkit-text-size-adjust: 100%;
154         -ms-text-size-adjust: 100%;
155         -o-text-size-adjust: 100%;
156         font-size-adjust: 100%;
157 }
158
159 //* reset ul, ol */
160 .list_reset () {
161         margin: 0px;
162         padding: 0px;
163         list-style: none;
164         list-style-position: inside;
165 }
166
167 //* box size: width, height */
168 .box (@w: 20px, @h: 20px) {
169         width: @w;
170         height: @h;
171 }
172