1
13693261870
2022-09-16 58d012f11dd34564d81b4eb3a6099eb689876597
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
// This sets a default background color for all btn-social implementations.  The actual provider style will
// override this with their own colors.  This is use as a fallback for unknown social types.
.btn-social {
  background-color: slategray;
}
 
@import "vendor/bootstrap-social/bootstrap-social";
 
/**
 * Add in our own custom social colors.
 */
.btn-submit {
  @include btn-social(#70ba61);
}
 
.btn-submit {
  border: 0;
  padding: 10px 25px;
  font-weight: normal;
  font-size: 1.75rem;
}
 
.btn-cas {
  @include btn-social(#153e50);
}
 
.btn-saml2 {
  @include btn-social(#cb2027);
}
 
.btn-oidc {
  @include btn-social(#f7931e);
}