-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
95 lines (90 loc) · 1.57 KB
/
style.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
/* CSS Document */
* {
margin: 0;
padding: 0;
}
html {
/*background-color: gray-scale;*/
}
body {
margin-top: 20px;
width: 100%;
}
.spinner {
display: inline-block;
opacity: 1;
width: auto;
-webkit-transition: opacity 0.25s, width 0.25s;
-moz-transition: opacity 0.25s, width 0.25s;
-o-transition: opacity 0.25s, width 0.25s;
transition: opacity 0.25s, width 0.25s;
}
.has-spinner.active {
cursor:progress;
}
.has-spinner.active .spinner {
opacity: 1;
width: auto;
}
.has-spinner.btn.active .spinner {
min-width: 20px;
}
/*form {
margin-left: auto;
margin-right: auto;
width: 500px;
background-color: #DDD;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
border-radius: 16px;
border: none;
}
fieldset {
font-weight: bold;
text-align: center;
border-top: none;
border-left: none;
border-right: none;
border-bottom-color: gray;
border-bottom-style: solid;
border-bottom-width: 1px;
}
p {
text-align: center;
}
input {
margin: 10px 20px 10px 20px;
}*/
.contenu {
margin-left: 10px;
margin-right: 10px;
}
.yesno {
margin-left: 80px;
text-align: left;
}
.bouton {
padding: 5px 10px 5px 10px;
margin-left: 350px;
}
.ligne {
margin: 10px 0 10px 0;
display: table;
width: 480px;
border-bottom-color: gray;
border-bottom-style: solid;
border-bottom-width: 1px;
}
.nom {
width: 100px;
display: table-cell;
}
.texte {
text-align: left;
width: 300px;
display: table-cell;
}
.error {
font-weight: bold;
font-color: red;
}