]> git.sur5r.net Git - contagged/blob - styles/design.css
Merge pull request #15 from cweiske/master
[contagged] / styles / design.css
1 /* some general setups */
2
3 * { padding: 0; margin: 0; }
4
5 body {
6     font: 80% "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
7     background-color: #fff;
8     color: #333;
9 }
10
11 img {
12     border: 0;
13 }
14
15 div {
16     margin: 0;
17     padding: 0;
18 }
19
20 /* genral link setup */
21
22 a:link,
23 a:visited {
24     text-decoration: none;
25     color: #06c;
26 }
27
28 a:hover,
29 a:active {
30     text-decoration: underline;
31     color: #06c;
32 }
33
34 .click {
35     cursor: pointer;
36 }
37
38 /* logo */
39
40 div#titlerow div.logo a {font-size:25px; font-weight:bolder}
41 div#titlerow div.logo span {font-size:16px; font-weight:bold}
42
43 /* photo */
44
45 img.photo {
46     border: 1px solid #999;
47     padding: 0.5em;
48 }
49
50 /* forms */
51
52 input, select, textarea, button {
53     border: 1px solid #999;
54     background-color: #F5F5F5;
55 }
56
57 input:focus, select:focus, textarea:focus {
58     border: 1px solid #06c;
59 }
60
61 .button {
62     background-color: #ddd;
63     cursor: pointer;
64 }
65
66 /* editing and other link icons */
67
68 a.ed_help {
69     background: transparent url(../pix/help.png) 0px 1px no-repeat;
70     padding: 1px 0px 1px 16px;
71 }
72
73 a.ed_orgs {
74     background: transparent url(../pix/book_open.png) 0px 1px no-repeat;
75     padding: 1px 0px 1px 16px;
76 }
77
78 a.ed_new {
79     background: transparent url(../pix/page_add.png) 0px 1px no-repeat;
80     padding: 1px 0px 1px 16px;
81 }
82
83 a.ed_show {
84     background: transparent url(../pix/page_red.png) 0px 1px no-repeat;
85     padding: 1px 0px 1px 16px;
86 }
87
88 a.ed_edit {
89     background: transparent url(../pix/page_edit.png) 0px 1px no-repeat;
90     padding: 1px 0px 1px 16px;
91 }
92
93 a.ed_copy {
94     background: transparent url(../pix/page_copy.png) 0px 1px no-repeat;
95     padding: 1px 0px 1px 16px;
96 }
97
98 a.ed_delete {
99     background: transparent url(../pix/page_delete.png) 0px 1px no-repeat;
100     padding: 1px 0px 1px 16px;
101 }
102
103 a.ed_vcfexport {
104     background: transparent url(../pix/vcard.png) 0px 1px no-repeat;
105     padding: 1px 0px 1px 16px;
106 }
107
108 a.ed_qrcode {
109     background: transparent url(../pix/qrcode.png) 0px 1px no-repeat;
110     padding: 1px 0px 1px 16px;
111 }
112
113 a.ed_csvexport {
114     background: transparent url(../pix/page_white_excel.png) 0px 1px no-repeat;
115     padding: 1px 0px 1px 16px;
116 }
117
118 a.ed_vcfimport {
119     background: transparent url(../pix/page_in.png) 0px 1px no-repeat;
120     padding: 1px 0px 1px 16px;
121 }
122
123 a.ed_map {
124     background: transparent url(../pix/map.png) 0px 1px no-repeat;
125     padding: 1px 0px 1px 18px;
126 }
127
128 a.ed_login {
129     background: transparent url(../pix/key.png) 0px 1px no-repeat;
130     padding: 1px 0px 1px 18px;
131 }
132
133 a.ed_logout {
134     background: transparent url(../pix/key_go.png) 0px 1px no-repeat;
135     padding: 1px 0px 1px 18px;
136 }
137
138 a.tag {
139     background: transparent url(../pix/tag_blue.png) 0px 1px no-repeat;
140     padding: 1px 0px 1px 18px;
141     white-space: nowrap;
142 }
143
144
145 /* TagCloud */
146 div#tagcloud {text-align: justify}
147 div#tagcloud a {white-space: nowrap;}
148 a.cloud_0 {font-size: 90%; }
149 a.cloud_1 {font-size: 110%; }
150 a.cloud_2 {font-size: 140%; }
151 a.cloud_3 {font-size: 150%; }
152 a.cloud_4 {font-size: 160%; }
153 a.cloud_5 {font-size: 180%; }
154 a.cloud_6 {font-size: 200%; }
155
156
157 div.ldaperror {
158   border: 1px solid #c33;
159   background: #fcc url(../pix/ldaperror.png) 10px 10px no-repeat;
160   width: 50%;
161   position: absolute;
162   z-index: 555;
163   top: 20%;
164   left: 25%;
165   padding: 0.5em 0.5em 1em 80px;
166   height: auto !important;
167   height: 60px;
168   min-height: 60px;
169   opacity: 0.9;
170   cursor: pointer;
171 }
172