-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuttons.scss
More file actions
32 lines (28 loc) · 912 Bytes
/
Copy pathbuttons.scss
File metadata and controls
32 lines (28 loc) · 912 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
.btn, button, input[type="button"], input[type="submit"] {
border-style: solid;
border-width: $button-border-width;
border-radius: $button-border-radius;
background-color: $button-bg-color;
color: $button-fg-color;
border-color: $button-border-color;
padding: $button-padding;
margin: $button-margin;
width: $button-size;
height: $button-size;
display: inline-block;
user-select: none;
@if $enable-apple-compatibility {
-webkit-user-select: none;
}
cursor: pointer;
font-size: inherit;
}
.btn:hover, button:hover, input[type="button"]:hover, input[type="submit"]:hover {
background-color: darken($button-bg-color, 10%);
//background-color: color.adjust($button-bg-color, $lightness: -10%);
}
.btn:focus, button:focus {
background-color: $button-bg-color;
outline: none;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}