/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
83.2.14 by elof.bigestans at gmail
* Started work on the viewStudents functionality... So far, displaying users works and it outputs correct and standardized html.
1
#viewStudents {
2
	width: 830px;
3
	font-size: .5em;
4
}
5
6
#viewStudents #viewStudentsHeader {
7
	height: 33px;
8
	border-bottom: 1px #acacac solid;
9
}
10
11
#viewStudents #viewStudentsHeader h1 {
12
	margin-left:20px;
13
	font-size:20px;
14
	line-height: 33px;
15
	display:inline;
16
}
17
18
#viewStudents #viewStudentsHeader #addStudentButton{
19
	margin-top: .25em;
20
	padding: 2px 8px;
21
	font-size: 300%;
22
	float: right;
23
	color: #939393;
24
	border: 1px solid #959595;
25
	border-radius: 6px;
26
}
27
28
#viewStudents #addStudentButton:hover{
29
	border-color: #000;
30
	color: #000;
31
}
32
33
#viewStudents #viewStudentsContent {
34
	margin-top: 20px;
35
}
36
37
#viewStudents table {
38
	border-collapse: collapse;
39
	width: 100%;
40
}
41
42
#viewStudents th, #viewStudents td {
43
	padding: 6px 0;
44
}
45
46
#viewStudents .odd td {
47
	background: #fff;
48
}
49
50
#viewStudents .even td{
51
	background: #f5f5f5;
52
}
53
54
#viewStudents th {
55
	background: #ddd;
56
	border-top: 1px #ccc solid;
57
	border-bottom: 1px #ccc solid;
58
	text-align: left;
59
}
60
61
#viewStudents th:first-child, #viewStudents td:first-child {
62
	padding-left: 30px;
63
}
64
65
#viewStudents .editStudentDetailsButton:before {
66
	font-family: "icomoon";
67
	font-size:20px;
68
	content: "C";
69
	display: block;
70
	margin: auto;
71
	width: 20px;
72
	height: 20px;
73
	line-height: 20px;
74
	border:1px solid #939393;
75
	border-radius: 3px;
76
	color: #939393;
77
}
78
79
#viewStudents .editStudentDetailsButton{
80
	color: #aaa;
81
	font-size: 0;
82
	line-height: 0;
83
}
84
#viewStudents .editStudentDetailsButton:hover{
85
	color:pink;
86
	text-decoration:none;
87
}