-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
35 lines (35 loc) · 721 Bytes
/
style.css
File metadata and controls
35 lines (35 loc) · 721 Bytes
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
body{
font-family: arial, sans-serif;
font-size: 13px;
line-height: 27px;
}
button{
font-weight: bold;
border-radius: 2px;
background-color: #f2f2f2;
height: 36px;
color: #757575;
padding: 0 16px;
margin: 11px 4px;
min-width: 54px;
text-align: center;
border: 1px solid #f2f2f2;
background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1);
}
.btn_centre:hover{
background-color: #f8f8f8;
border: 1px solid #c6c6c6;
color: #222;
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}
.btn_bleu{
color: #fff;
background: -webkit-linear-gradient(top,#4387fd,#4683ea);
border-radius: 2px;
border: 1px solid #4285f4;
padding: 0 12px;
line-height: 28px;
}
.btn_bleu:hover{
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}