Shane Lindsay 71bdc19fd4 0.0.0.3 releaseand Firefox extension
- add 0.0.0.3 chrome
- add 0.0.0.3 firefox extension
2021-04-17 16:30:20 -07:00

71 lines
1.3 KiB
CSS

html, body {
width: 300px;
}
html {
background: #151619;
color: #c9cbcd;
font-family: Open Sans,Segoe UI,sans-serif;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
.container {
text-align: center;
padding-bottom: 10px;
}
.button-group {
display: flex;
justify-content: center;
}
.button {
border-radius: 6px;
color: #c3c4ca;
font-weight: bold;
padding: 10px 20px;
text-decoration: none;
transition: all 150ms ease-in-out;
}
.button:hover {
background-color: #1d1f23;
}
.button:not(:first-of-type) {
margin-left: 15px;
}
.discord {
overflow: visible;
margin-right: 3px;
display: inline-block;
}
.button-arrow .arrow-icon {
overflow: visible;
margin-left: 3px;
margin-bottom: -2px;
width: 8px;
}
.icon {
margin-bottom: -3px;
}
.buton-text{
margin-bottom: 10px;
}
.button-arrow .arrow-head {
transform: translateX(0);
transition: transform 150ms ease-in-out;
}
.button-arrow .arrow-body {
opacity: 0;
transform: scaleX(1);
transition: transform 150ms ease-in-out, opacity 150ms ease-in-out;
}
.button-arrow:hover .arrow-head {
transform: translateX(3px);
}
.button-arrow:hover .arrow-body {
opacity: 1;
transform: scaleX(2);
}