This repository was archived by the owner on Jul 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_buttons.scss
More file actions
77 lines (72 loc) · 1.94 KB
/
_buttons.scss
File metadata and controls
77 lines (72 loc) · 1.94 KB
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
//
// Sharp-CSS
// CSS styling for sharp-www
// License: MIT License
//
button, input[type="button"], input[type="submit"]{
background-color: $forms_buttons_bgcolor;
border-radius: 5px;
padding: 10px;
cursor: pointer;
margin: 10px;
border: none;
}
button:hover, input[type="button"]:hover, input[type="submit"]:hover{
background-color: $forms_buttons_border;
transition: 0.5s;
}
button:active, input[type="button"]:active, input[type="submit"]:active{
background-color: $forms_buttons_border;
box-shadow: 0 4px 16px 0 $shadow_color, 0 4px 20px 0 $shadow_color;
}
.button-success{
background-color: $forms_buttons_success_bg;
}
.button-success:active{
background-color: $forms_buttons_success_border;
box-shadow: 0 4px 16px 0 $shadow_color, 0 4px 10px 0 $shadow_color;
color: white;
}
.button-success:hover{
background-color: $forms_buttons_success_border;
color: white;
}
.button-error{
background-color: $forms_buttons_error_bg;
color: white;
}
.button-error:active{
background-color: $forms_buttons_error_border;
box-shadow: 0 4px 16px 0 $shadow_color, 0 4px 10px 0 $shadow_color;
color: white;
}
.button-error:hover{
background-color: $forms_buttons_error_border;
color: white;
}
.button-warning{
background-color: $forms_buttons_warning_bg;
color: white;
}
.button-warning:active{
background-color: $forms_buttons_warning_border;
box-shadow: 0 4px 16px 0 $shadow_color_light, 0 4px 10px 0 $shadow_color_light;
color: white;
}
.button-warning:hover{
background-color: $forms_buttons_warning_border;
color: white;
}
.button-primary{
background-color: $forms_buttons_primary_bg;
color: black;
}
.button-primary:active{
background-color: $forms_buttons_primary_border;
box-shadow: 0 4px 16px 0 $shadow_color_light, 0 4px 10 px 0 $shadow_color_light;
color: black;
}
.button-primary:hover{
background-color: $forms_buttons_primary_border;
color: black;
}