-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (104 loc) · 1.91 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
96
97
98
99
100
101
102
103
104
105
@charset "UTF-8";
body{
background-color: #09C;
color:#FFFFFF;
font-family: Verdana, Geneva, sans-serif;
font-size: 18px;
text-shadow: -1px 1px 2px #444444;
}
input[type="text"]{
border-radius: 6px;
font-size: 14px;
height: 20px;
width:260px;
}
textarea{
border-radius: 6px;
font-size: 14px;
height: 50px;
margin-bottom:15px;
}
a:link {
color: #0F3;
}
a:visited {
color: #CCC;
text-decoration: underline;
}
a:hover, a:active, a:focus {
text-decoration: none;
}
.movable{
/* Pas de style, uniquement pour reconnaître
*les contenues à hide()/show() */
}
.part{
background:#183F50;
border-radius: 15px;
box-shadow: 0 0 3px #F4F1DE;
clear:both;
margin: 18px auto;
padding: 30px;
position:relative;
text-align:center;
width: 400px;
}
.partTop{
float:left;
margin-right:20px;
margin-bottom:15px;
height:auto;
width:auto;
}
.part label{
display: inline-block;
vertical-align:top;
width: 200px;
}
.part form label{
display: inline-block;
text-align: right;
padding-right: 20px;
width:100px;
}
select{
background: #FFD21E;
border: 1px solid #999999;
border-radius: 7px;
color: #666666;
cursor:pointer;
font-size:20px;
text-align:center;
text-shadow: 1px 0 1px #FFF;
vertical-align:middle;
width: 200px;
}
option{
background: none;
border-radius: 7px;
font-size:14px;
padding:5px 15px;
}
/* buttons */
.btn-content{
clear:both;
text-align: center;
}
input[type="button"], input[type="reset"]{
border: 1px solid #999;
border-radius: 7px;
font-size:14px;
text-shadow: -1px 0 1px #666666;
cursor:pointer;
padding:5px;
}
.red, .redF:hover{background:#ee5f5b;color:#FFF}
.redF, .red:hover{background:#bd362f;color:#FFF}
.green, .greenF:hover{background:#62c462;color:#FFF}
.greenF, .green:hover{background:#51a351;color:#FFF}
.yellow, .yellowF:hover{background:#FBB450;color:#FFF}
.yellowF, .yellow:hover{background:#F89406;color:#FFF}
/* ./buttons */
img{
max-width:380px;
}