parent
17bc222e55
commit
a56293056c
@ -0,0 +1,12 @@
|
|||||||
|
import styles from '../styles/components/Socials.module.css'
|
||||||
|
|
||||||
|
const Socials = () => (
|
||||||
|
<section className={styles.buttons}>
|
||||||
|
<a href="https://twitter.com/Trick_the_fox" target="_blank"><i className="fab fa-twitter" size="1x"></i> Twitter</a>
|
||||||
|
<a href="https://www.twitch.tv/trick_the_fox" target="_blank"><i className="fab fa-twitch" size="1x"></i> Twitch</a>
|
||||||
|
<a href="https://trello.com/b/cMyTLWYd" target="_blank"><i className="fab fa-trello" size="1x"></i> Trello</a>
|
||||||
|
<a href="https://ko-fi.com/trick_the_fox" target="_blank"><i className="fas fa-coins" size="1x"></i> Ko-fi</a>
|
||||||
|
</section>
|
||||||
|
)
|
||||||
|
|
||||||
|
export default Socials
|
@ -0,0 +1,25 @@
|
|||||||
|
.buttons {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttons > a {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1em;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding: 0.4em 2em;
|
||||||
|
font-size: 1.3em;
|
||||||
|
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
|
||||||
|
background-color: rgba(79,79,255,1);
|
||||||
|
color: white;
|
||||||
|
transition-duration: 0.1s;
|
||||||
|
font-family: 'Dela Gothic One', cursive;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttons > a:hover {
|
||||||
|
transform: scale(0.95);
|
||||||
|
transition-duration: 0.1s;
|
||||||
|
}
|
Loading…
Reference in new issue