LinkStack/themes/galaxy/brands.css

87 lines
2.0 KiB
CSS
Raw Normal View History

2022-05-20 12:07:42 +02:00
/* Table of contents
- Rounded user avatars
- Buttons
- Brand Styles
*/
/* Rounded avatars
*/
/* Disable this if you don't want rounded avatars for users */
.rounded-avatar {
border-radius: 50%;
}
2022-12-06 16:00:51 +01:00
.social-icon {
font-size: 32px;
padding: 10px;
}
.social-icon-div {
padding-bottom: 30px;
}
.social-icon{color:#fff;}
2022-05-20 12:07:42 +02:00
/* Buttons
*/
:root {
--bgColor: #223344;
--bgColor2: #090a0f;
--accentColor: #FFF;
--font: 'Karla', sans-serif;
--delay: .3s; }
.button {
position: relative;
background-color: transparent;
color: var(--accentColor);
border: solid var(--accentColor) 2px;
border-radius: 10px;
font-size: 1rem;
text-align: center;
display: block;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
padding: 10px; /* 17px */
text-decoration: none;
/* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
-webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
.button:hover {
background-color: var(--accentColor);
color: var(--bgColor);
}
}
.button:active {
background-color: var(--accentColor);
color: var(--bgColor);
}
/* Brand Icons
*/
.icon {
padding: 0px 8px 3.5px 0px;
vertical-align: middle;
width: 20px;
height: 20px;
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
filter: grayscale(100%);
2022-05-30 22:20:43 +02:00
}
.button:hover .icon {
-webkit-filter: invert(100%) grayscale(100%);
-moz-filter: invert(100%) grayscale(100%);
filter: invert(100%) grayscale(100%);
2022-05-20 12:07:42 +02:00
}