blob: be96775ab3f8f059c61d215cb7b05c1b304860c6 (
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
|
/*
############################################################################
# #
# Description: CSS spécifique à la partie recherche de l'index #
# #
############################################################################
*/
.star {
width: 1.2em !important;
background-color: var(--tableBg) !important;
font-size: var(--fontSizeSmall) !important;
}
.checked {
color: var(--tableStarChecked) !important;
}
.unchecked {
color: var(--tableStarUnchecked) !important;
}
/* DIV SEARCH */
#divSearch {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
width: 80%;
margin-left: auto;
margin-right: auto;
padding-bottom: 1em;
border-bottom: var(--mainSiteColor) 2px solid;;
}
#mainSearch form {
display: flex;
flex-direction: row;
flex-grow: 1;
justify-content: center;
align-items: center;
gap: 1em;
}
#mainSearch p {
font-size: var(--fontSizeSmallPlus);
font-style: italic;
}
#mainSearch select {
height: 3em;
font-size: calc((var(--fontSizeI) * 2) / 3); /* Pour avoir la même taille qu'un logo */
border-radius: var(--inputBorderRadius);
}
#mainSearch pre {
font-family: SourceSansPro;
white-space: pre-wrap;
margin: 0.3em 0em;
}
#formMandate {
margin: 1em auto;
}
/* MOBILE */
@media screen and (max-width: 768px) {
.extend {
display: none;
}
#mainSearch form {
flex-direction: column;
}
#divSearch {
flex-direction: column;
}
}
|