forked from humanitesnumeriques/appAnnuaireXquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathannuaire.css
123 lines (113 loc) · 2.4 KB
/
annuaire.css
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
a {
text-decoration:none;
color: black;
}
table.blueTable {
border: 1px solid #1C6EA4;
background-color: #EEEEEE;
width: 100%;
text-align: left;
border-collapse: collapse;
}
table.blueTable td, table.blueTable th {
border: 1px solid #AAAAAA;
padding: 3px 2px;
}
table.blueTable tbody td {
font-size: 13px;
}
table.blueTable tr:nth-child(even) {
background: #D0E4F5;
}
table.blueTable thead {
background: #1C6EA4;
background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
border-bottom: 2px solid #444444;
}
table.blueTable thead th {
font-size: 15px;
font-weight: bold;
color: #FFFFFF;
border-left: 2px solid #D0E4F5;
}
table.blueTable thead th:first-child {
border-left: none;
}
table.blueTable tfoot {
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
background: #D0E4F5;
background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
border-top: 2px solid #444444;
}
table.blueTable tfoot td {
font-size: 14px;
}
table.blueTable tfoot .links {
text-align: right;
}
table.blueTable tfoot .links a{
display: inline-block;
background: #1C6EA4;
color: #FFFFFF;
padding: 2px 8px;
border-radius: 5px;
}
#header {
font-size: x-large;
color: red;
padding: 30px;
min-width: 100%;
border-bottom: 2px solid black;
}
#menuLeft {
padding-top: 20px;
width: 185px;
min-height: 80%;
height: 80%;
padding-left: 30px;
float:left;
border-right: 2px solid black;
}
#contenu {
padding-top: 20px;
width:500px;
min-height: 30%;
float:left;
padding-left: 20px;
}
.entry {
font-size: small;
border: 1px solid black;
padding: 10px;
margin-bottom: 10px;
border-radius: 20px;
box-shadow: 2px 2px 5px 5px rgba(0, 0, 255, 0.1);
}
.date {
font-size: x-small;
color: blue;
}
.nom, .prenom, .adresse {
font-weight: bold;
margin-bottom: 3px;
}
.bouton {
padding: 4px;
border-radius: 10px;
border: 1px solid black;
background-color: rgba(0,0,255, 0.1);
margin: 4px;
margin-bottom: 20px;
display:block;
text-align: center;
}
#menuFloat {
margin-left: 200px;
padding: 20px;
}