Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/EjercitarWeb/WebContent/css/ejercitar-base.css
blob: c30a2c9961722481478a73f356804c2b0314e9e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/** 
 * Ejercitar Base Style
 * @author Fernando Caballero
 */
body {
	background-color: #FEFEFE;
}

.e-viewport {
	width: 100%;
	height: 100%;
}

.e-panel-header {
	position: fixed;
	width: 100%;
	height: 56px;
	padding: 0px 5px;
	line-height: 50px;
	background-color: #85FF85;
}

.e-panel-footer {
	position: fixed;
	height: 40px;
	width: 100%;
	bottom: 0px;
	padding: 5px;
	font-size: 12px;
	background-color: #C8FFC8;
	text-align: center;
}

.e-panel-footer span {
	display: block;
	color: #3C763D;
}

.e-panel-center {
	margin-top: 61px;
	margin-bottom: 40px;
	padding: 0px 20px;
}

.e-panel-center .e-panel-hd {
	font-weight: 700;
	font-size: 1.4em;
	margin: 0px 5px 10px 5px;
	color: #333;
}

.e-panel-center .e-panel-bd {
	margin: 0px auto;
	width: 80%;
}

.e-form {
	padding: 5px 0px;
}

.e-tbar {
	margin-bottom: 5px;
}

.e-icon-user, .e-icon-password {
	content: "";
}

.e-icon-user:before {
	content: url(img/icon-user.png);
}

.e-icon-password:before {
	content: url(img/icon-lock.png);
}

.e-logo {
	background-size: 242px 56px;
	background-image: url(img/ejercitar.png);
	width: 242px;
	height: 56px;
	float: left;
}

.e-clear {
	clear: both;
}

.e-clear-left {
	clear: left;
}

.e-clear-right {
	clear: right;
}