1/**
2 * EGroupware: Stylite Pixelegg template
3 *
4 * lettersearch
5 *
6 * Please do NOT change css-files directly, instead change less-files and compile them!
7 *
8 * @link http://www.egroupware.org
9 * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
10 * @author Stefan Reinhard <stefan.reinhard@pixelegg.de>
11 * @package pixelegg
12 * @version $Id: layout_table.less 3089 2014-06-11 14:02:57Z pixelegg $
13 */
14
15
16@import (reference) "definitions.less";
17//##############################################################################################################
18/**
19    * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
20    * http://cssreset.com
21    * fieldset legend
22    */
23/*    html, body, div, span, applet, object, iframe,
24    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
25    a, abbr, acronym, address, big, cite, code,
26    del, dfn, em, img, ins, kbd, q, s, samp,
27    small, strike, strong, sub, sup, tt, var,
28    b, u, i, center,
29    dl, dt, dd, ol, ul, li,
30    form, label,
31    table, caption, tbody, tfoot, thead, tr, th, td,
32    article, aside, canvas, details, embed,
33    figure, figcaption, footer, header, hgroup,
34    menu, nav, output, ruby, section, summary,
35    time, mark, audio, video {
36    margin: 0;
37    padding: 0;
38    border: 0;
39    font-size: 100%;
40    font: inherit;
41    }*/
42    /* HTML5 display-role reset for older browsers */
43    article, aside, details, figcaption, figure,
44    footer, header, hgroup, menu, nav, section {
45    display: block;
46    }
47
48    body {
49    line-height: 1;
50    }
51
52    ol, ul {
53    /*list-style: none;*/
54    }
55    blockquote, q {
56    quotes: none;
57    }
58    blockquote:before, blockquote:after,
59    q:before, q:after {
60    content: '';
61    content: none;
62    }
63    table {
64    border-collapse: collapse;
65    border-spacing: 0;
66    }
67
68    *::-webkit-input-placeholder {
69        color:@gray_60;
70    }
71    *:-moz-placeholder {
72        /* FF 4-18 */
73        color: @gray_60;
74    }
75    *::-moz-placeholder {
76        /* FF 19+ */
77        color: @gray_60;
78    }
79    *:-ms-input-placeholder {
80        /* IE 10+ */
81        color: @gray_60;
82    }
83
84    iframe{border: none;}
85
86
87
88
89//Reset
90
91html * {
92    font-size: 100%;
93
94}
95//###############################################
96
97// verhindert Scrollbars und gibt content volle höhe
98html {
99
100    margin: 0px !important;
101    padding: 0px !important;
102    width: 99.9% !important;
103    height: 99.9% !important;
104
105}
106
107body{
108    background-image:none;
109
110    .background_color_0_gray;
111    .color_100_gray; // Schriftfarbe schwarz
112
113    margin: 0px !important;
114    padding: 0px !important;
115    width: 99.9%;
116    height: 99.9% !important;
117    font-size: 11px;
118    line-height: 1.28;
119    font-weight: normal;
120
121}