blob: ee41e0335cccc01a5646cedf1826c272a1ee4728 (
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#language-form{
display: none;
}
.search .form-group {
margin-bottom: 0.2rem;
font-size: 0.9em;
}
.nav-button{
cursor:pointer;
z-index: 1000;
position: fixed;
right: 5px;
margin-top: 5px;
}
div.nav-button:hover{
opacity: 0.2;
}
#to_bottom_arrow{
bottom:84px;
}
div#footer{
position: fixed;
bottom: 0px;
width: 100%;
left: 0px;
z-index: 101;
}
div#validation-bar{
padding: 5px 0;
}
button:hover{
cursor: pointer;
}
div#foot{
font-size: 0.75em;
text-align: center;
padding: 0.2em;
}
.search-vector{
width: 100%;
}
/* window */
.close-buttons{
position: absolute;
right: 10px;
top: 5px;
text-align: right;
}
.toolbar{
padding: 0.5em;
}
.history-nav{
display: inline-block;
width: 150px;
text-align: center;
}
.sheet .card-body{
padding: 0.5em;
}
.sheet .card-body .main{
font-weight: bold;
}
.sheet .card-body p{
margin: 0;
font-size: 0.9em;
}
.sheet h4, .sheet h3{
text-align: center;
text-shadow: 2px 2px 2px rgba(150, 150, 150, 0.70);
}
.sheet h4{
text-shadow: 2px 2px 2px rgba(150, 150, 150, 0.45);
}
.sheet .card{
margin-bottom: 1em;
}
/* à adapter */
#message,
#message div{
display: none;
}
#message {
z-index: 42200;
position: absolute;
top: 5px;
right: 5px;
background: #fff;
padding: 0.5em 1em;
border: 1px solid;
border-radius: 3px;
}
#message span{
padding: 0 1em;
}
|