summaryrefslogtreecommitdiff
path: root/design/confirmation.css
blob: d7e1f9710be57d673f3baa308ec61c29a52d08eb (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
#boutons
{
  float: right;
  margin: 2px 2px 2px 2px;
}
#bouton
{
   position: relative;
   width: 20px; height: 16px;
   background-color: #819fbc;
   border: 1px solid #4a6a8b;
  -moz-border-radius: 2px;
}
#bouton:hover
{
 -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
 -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}
#reduire
{
   position: relative;
   margin: 1px 0px 0px 1px;
   width: 18px; height: 14px;
   background-color: #5a81a8;
}
#reduire div
{
   position: absolute;
   margin: 9px 0px 0px 2px; 
   width: 14px; height: 2px; 
   background-color: #dfe5ed;
  -moz-border-radius: 1px;
}
#close
{
   position: relative;
   margin: 1px 0px 0px 1px;
   width: 18px; height: 14px;
   background-color: #5a81a8;
}
#close div
{
   border: 1px solid #486480;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
   background-color: #dfe5ed;
   position: absolute;
   margin: 5px 0px 0px 1px; 
   width: 14px; height: 2px; 
}
#close div:first-child
{
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
   transform: rotate(45deg);
}
#close div:last-child
{
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
   transform: rotate(-45deg);
}
#confirmation
{
   margin: auto;
   width: 600px; height: 250px; 
   background-color: #517aa3;
   border: 1px solid #8ba7c2;
  -moz-border-radius: 10px;
}
#confirmation_mes
{
   width: 594px; height: 222px; 
   border: 1px solid #395572;
   background-color: #e7e7e7;
   margin: 23px 0px 0px 2px;
  -moz-border-radius: 10px;
}
/*
  <div id="confirmation">
     <div id="boutons">
        <div id="bouton">
            <div id="close"><div></div><div></div></div>
        </div>
     </div>
     <div id="boutons">
        <div id="bouton">
            <div id="reduire"><div></div></div>
        </div>
     </div>
     <div id="confirmation_mes"><br/>
     Voulez confirmez l'envoye de ce commentaire ? 
     </div>
  </div>
*/