Welcome to mirror list, hosted at ThFree Co, Russian Federation.

button.scss « shortcodes « sass « assets - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d82ffa5e9707df86999ebd2b0d8dde1e8bf18b35 (plain)
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
$color_primary : #007bff ;
$color_secondary : #6c757d ;
$color_success : #28a745 ;
$color_danger : #dc3545 ;
$color_warning : #ffc107 ;
$color_info : #17a2b8 ;
$color_light : #f8f9fa ;
$color_dark : #343a40 ;
$color_white : #fff ;
$color_transparent : transparent ;

button.btn{

	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	cursor: pointer;

	color: #fff;
	background-color: #007bff;
	border-color: #007bff;

	a{color:inherit!important;}

	&.primary{
    	color: white;
       	background-color: $color_primary;
    	border-color: $color_primary;   
  	}
	&.info{
		color: white;
		background-color: $color_info;
		border-color: $color_info;		
	}
	&.success{
		color: white;
		background-color: $color_success;
		border-color: $color_success;		
	}
	&.warning{
		color: black;
		background-color: $color_warning;
		border-color: $color_warning;		
	}
	&.danger{
		color: white;
		background-color: $color_danger;
		border-color: $color_danger;		
	}
	&.danger{
		color: white;
		background-color: $color_danger;
		border-color: $color_danger;		
	}
	&.secondary{
		color: white;
		background-color: $color_secondary;
		border-color: $color_secondary;		
	}
	&.light{
		color: black;
		background-color: $color_light;
		border-color: $color_light;		
	}
	&.dark{
		color: white;
		background-color: $color_dark;
		border-color: $color_dark;		
	}
	

}