Added behance button (#629)
This commit is contained in:
parent
5639a7f88f
commit
057e60d9fe
|
@ -244,6 +244,20 @@ button:hover,
|
||||||
filter: brightness(90%);
|
filter: brightness(90%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Behance */
|
||||||
|
.button.button-behance {
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: linear-gradient(
|
||||||
|
to bottom,
|
||||||
|
#0596E9,
|
||||||
|
#1758D0
|
||||||
|
);
|
||||||
|
}
|
||||||
|
.button.button-behance:hover,
|
||||||
|
.button.button-behance:focus {
|
||||||
|
filter: brightness(90%);
|
||||||
|
}
|
||||||
|
|
||||||
/* BookWyrm */
|
/* BookWyrm */
|
||||||
.button.button-bookwyrm {
|
.button.button-bookwyrm {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="white">
|
||||||
|
<path d="M22 7h-7v-2h7v2zm1.726 10c-.442 1.297-2.029 3-5.101 3-3.074 0-5.564-1.729-5.564-5.675 0-3.91 2.325-5.92 5.466-5.92 3.082 0 4.964 1.782 5.375 4.426.078.506.109 1.188.095 2.14h-8.027c.13 3.211 3.483 3.312 4.588 2.029h3.168zm-7.686-4h4.965c-.105-1.547-1.136-2.219-2.477-2.219-1.466 0-2.277.768-2.488 2.219zm-9.574 6.988h-6.466v-14.967h6.953c5.476.081 5.58 5.444 2.72 6.906 3.461 1.26 3.577 8.061-3.207 8.061zm-3.466-8.988h3.584c2.508 0 2.906-3-.312-3h-3.272v3zm3.391 3h-3.391v3.016h3.341c3.055 0 2.868-3.016.05-3.016z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 630 B |
|
@ -461,6 +461,10 @@ class ButtonSeeder extends Seeder
|
||||||
[
|
[
|
||||||
'name' => 'throne'
|
'name' => 'throne'
|
||||||
],
|
],
|
||||||
|
|
||||||
|
[
|
||||||
|
'name' => 'behance'
|
||||||
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
Button::insert($buttons);
|
Button::insert($buttons);
|
||||||
|
|
Loading…
Reference in New Issue