/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
1
/* Fart */
2
3
.popup {
4
	width: 500px;
5
	height: 250px;
6
	position: fixed;
7
	z-index: 9999;
57.3.2 by Simon Bergöö
added some files for the popups
8
	/* negative margins equal to half of width and half of height centers the element in conjunction with top/left: 50%; */
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
9
	margin-left: -250px;
10
	margin-top: -125px;
11
	top: 50%;
12
	left: 50%;
13
	border: 1px solid #d3d3d3;
14
	font: normal 1.3em/100% sans-serif;
15
	background: #f5f5f5;
16
}
17
18
.popup form {
19
	margin-left: 10px;
20
	margin-top: 10px;
21
}
22
23
.popup .popupHeader{
24
	padding: 5px 10px;
25
	color:#FFF;
26
	background-color:#353535;
57.3.2 by Simon Bergöö
added some files for the popups
27
	font-size: 100%;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
28
	font-weight: normal;
29
	line-height: 1.5em;
30
	border-bottom: 1px solid #d3d3d3;
31
}
32
33
34
.popup form ul li {
35
	list-style: none;
36
	height: 40px;
37
}
38
39
.popup form ul li label {
40
	float: left;
41
	width: 10em;
42
	clear: left;
43
	line-height: 30px;
44
}
45
46
.popup input.text {
47
	background-color:white;
48
	width:230px;
57.3.2 by Simon Bergöö
added some files for the popups
49
	font-size:16px;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
50
	color:color:#333333;
51
	border-radius: 7px;
57.3.2 by Simon Bergöö
added some files for the popups
52
	padding: 5px;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
53
	height: auto;
54
	vertical-align: bottom;
55
	margin-left: 0;
56
	border: 1px #d3d3d3 solid;
57
}
58
59
.popup input.text:focus {
60
	outline: 0;
61
	border-color: #000;
62
}
63
64
.popup span {
65
	font-size: 100%;
66
	line-height: 30px;
67
}
68
69
70
.popup .bottomMenu {
71
	position: absolute;
72
	bottom: 10px;
73
}
74
75
.popup .popupButton {
76
	display:inline-block !important;
77
	height:35px;
78
	width:100px;
79
	color: #666;
80
	border-radius: 7px;
81
	border: 1px #d3d3d3 outset;
82
	background-image: linear-gradient(to top,#fff,#f5f5f5);
83
}
84
85
.popup .popupButton:hover {
86
	cursor: pointer;
87
	background: #fefefe;
88
	color: #000;
89
}
90
91
.popup .popupButton:active {
92
	border: 1px #d3d3d3 inset;
93
}
94
95
.popup .popupButton:focus {
96
	border-color: #000;
97
	outline: 0;
98
}
99
100
.popup .hint {
101
	float: right;
102
}
103
57.3.2 by Simon Bergöö
added some files for the popups
104