-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_button.css
More file actions
40 lines (35 loc) · 833 Bytes
/
style_button.css
File metadata and controls
40 lines (35 loc) · 833 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
36
37
38
39
40
/* CSS Document */
button {
display: inline-block;
margin: 0 10px 0 0;
padding: 2px 30px;
font-size: 21px;
font-family: futura, serif;
line-height: 1.4;
appearance: none;
box-shadow: none;
border-radius: 5px;
position: relative;
top: 10px;
-moz-transition: background-color 0.5s 0.1s ease;
-o-transition: background-color 0.5s 0.1s ease;
-webkit-transition: background-color 0.5s 0.1s ease;
}
button:focus {
outline: none
}
section.flat-button button {
color: #FFFFFF;
background-color: #0F293C;
/* text-shadow: -1px 1px #417cb8; */
border: solid 2px #0F293C;
}
section.flat-button button:hover,
section.flat-buttont button.hover {
background-color: #41597D;
border: solid 2px #FFFFFF;
}
section.flat-button button:active,
section.fla-buttont button.active {
background-color: #27496d;
}