Subversion Repositories ALCASAR

Rev

Rev 2809 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
2565 lucas.echa 1
h1 {
2
	font-family: "DejaVu Sans";
2813 rexy 3
	font-size: 16pt;
318 richard 4
	text-align: left;
5
	color: #666666;
2565 lucas.echa 6
}
318 richard 7
 
2565 lucas.echa 8
h2 {
9
	font-family: "DejaVu Sans";
318 richard 10
	font-size: 15pt;
11
	text-align: center;
12
	color: #666666;
2565 lucas.echa 13
}
318 richard 14
 
2813 rexy 15
h3 {
16
	font-family: "DejaVu Sans";
17
	font-size: 14pt;
18
	text-align: center;
19
	color: #666666;
20
}
21
 
2565 lucas.echa 22
:link, :visited, :link:hover, :visited:hover {
23
	font-family: "DejaVu Sans";
318 richard 24
	font-size: small;
25
	color: #666666;
2565 lucas.echa 26
}
318 richard 27
 
2565 lucas.echa 28
body, p, ul, li {
29
	font-family: "DejaVu Sans";
318 richard 30
	font-size: small;
31
	color: #666666;
32
	background-color: #EFEFEF;
33
	text-align: justify;
2565 lucas.echa 34
}
318 richard 35
 
2565 lucas.echa 36
th {
37
	font-family: "DejaVu Sans";
318 richard 38
	font-size: small;
39
	text-align: center;
40
	color: #EFEFEF;
41
	background-color: #666666;
2565 lucas.echa 42
}
318 richard 43
 
2565 lucas.echa 44
table {
45
	font-family: "DejaVu Sans";
318 richard 46
	font-size: small;
47
	color: #666666;
48
	background-color: #EFEFEF;
2565 lucas.echa 49
}
50
 
51
/*style des étiquettes*/
52
.etiquette {
53
	font-family: "DejaVu Sans";
508 richard 54
	font-size: small;
55
	text-align: right;
56
	color: #666666;
57
	background-color: #d0ddb0;
2565 lucas.echa 58
}
59
 
60
.hide-advanced-fields .advanced-field {
61
	display: none;
62
}
63
 
64
#login-time-calendar img {
65
	width: 30px;
66
	vertical-align: -9px;
67
	margin-left: 5px;
68
}	
69
 
70
.schedule-rows td {
71
  width: 80px;
72
  height: 22px;
73
  margin: 3px;
74
  padding: 0;
75
  background-color: #B55;
76
  cursor: pointer;
77
}
78
 
79
.schedule-rows td:first-child {
80
  background-color: transparent;
81
  text-align: right;
82
  position: relative;
83
  top: -12px;
84
  font-family: 'Sans';
85
  font-size: 0.8em;
86
}
87
 
88
.schedule-rows td[data-selected],
89
.schedule-rows td[data-selecting] { background-color: #d0ddb0; }
90
.schedule-rows td[data-unselecting] { background-color: #B22; }
91
 
92
.schedule-rows td[data-disabled] { opacity: 0.55; }
93
 
94
.schedule-header tr th:first-child {
95
	background-color: transparent;
96
}
2809 rexy 97
 
98
/*
99
 * Panel
100
 */
101
.panel {
2813 rexy 102
	display: table;
2809 rexy 103
	width: 100%;
104
	border-spacing: 0;
105
	border-collapse: collapse;
106
}
107
.panel .panel-header {
2813 rexy 108
	display: table-caption;
109
	border-bottom: 3px solid #FFCC66;
2809 rexy 110
	padding: 0;
111
	font-family: "DejaVu Sans";
112
	font-size: small;
113
	text-align: center;
114
	font-weight: bold;
115
	color: #EFEFEF;
116
	background-color: #666666;
117
}
2813 rexy 118
.panel .panel-row {
119
	display: table-row;
120
	border: 1px solid black;
2809 rexy 121
	overflow: auto;
122
}
2813 rexy 123
.panel .panel-cell {
124
	display: table-cell;
125
	border: 1px solid black;
126
	overflow: auto;
127
}