-
Notifications
You must be signed in to change notification settings - Fork 1
/
barred.css
128 lines (127 loc) · 2.1 KB
/
barred.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
124
125
126
127
128
body {
background-color: white;
padding: 10px;
margin-top: 50px;
}
dt {
float: left;
border-bottom: 1px solid black;
margin-top: 10px;
}
dd {
clear: both;
}
table {
display: block;
clear: both;
}
table, tr, td, th {
margin: 0px;
border-width: 0px;
border-spacing: 0px;
border-collapse: collapse;
}
table * tr td {border: solid 1px silver; padding: 5px}
table * tr th {border: solid 1px silver; padding: 5px}
table thead * th {
border: solid 1px;
border-color: ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight;
padding: 5px;
}
thead {
background-color: ThreeDFace;
}
form {
margin: 50px 30px;
}
label {
display: block;
padding: 10px;
background: white;
}
p label {
float: left;
}
hr {
border: 0;
width: 80%;
height: 1px;
background-color: silver;
}
input, textarea {
display: block;
}
input:focus, textarea:focus {
background: yellow;
}
input[disabled], textarea[disabled], input[readonly], textarea[readonly] {
background-color: white;
color: black;
border: none;
border-top: 1px solid black;
padding: 5px;
}
#selection table tr td {border: none}
#indicateurs {
margin-bottom: 10px;
background: silver;
}
#message_serveur {
position: fixed;
right: 0px;
bottom: 0px;
clear: left;
margin: 5px;
padding: 10px;
}
#entete {
position: fixed;
left: 0px;
top: 0px;
}
#entete h1 {
clear: right;
margin: 5px;
padding: 10px;
color: white;
background-color: black;
font-size: 30px;
}
.bouton {
color: blue;
text-decoration: underline;
padding: 5px;
border: 1px solid;
cursor: pointer;
}
#entete .bouton {
border: 1px outset silver ;
padding: 5px 10px;
color: black;
background-color: lightgrey;
text-decoration:none;
}
.inactif {
color: black;
}
.numerique {text-align: right}
.message_erreur {
color: white;
font-weight: bold;
background-color: red;
padding: 10px;
margin: 5px;
}
.message_notification {
color: white;
font-weight: bold;
background-color: green;
padding: 10px;
margin: 5px;
}
.message_aide {
color: black;
background-color: lavender;
padding: 10px;
margin: 5px;
}