74 lines
1.8 KiB
CSS
74 lines
1.8 KiB
CSS
|
||
/* 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%;
|
||
-webkit-box-shadow: 0px 0px 0px 3px var(--button-background-color);
|
||
box-shadow: 0px 0px 0px 3px var(--button-background-color);
|
||
background-color: var(--button-background-color) !important;
|
||
width: var(--image-width);
|
||
height: var(--image-height);
|
||
}
|
||
|
||
.social-icon {
|
||
font-size: 32px;
|
||
padding: 10px;
|
||
}
|
||
.social-icon-div {
|
||
padding-bottom: 30px;
|
||
}
|
||
.social-icon{color:#fff;}
|
||
|
||
/* Buttons
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||
|
||
.button {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
text-decoration: none;
|
||
font-size: 1em;
|
||
color: var(--button-text-color);
|
||
min-height: 58px;
|
||
line-height: 58px;
|
||
cursor: pointer;
|
||
|
||
color: var(--button-text-color);
|
||
background-color: var(--button-background-color);
|
||
width: 100%;
|
||
max-width: 600px;
|
||
border-radius: 14px;
|
||
margin-bottom: 13px;
|
||
}
|
||
|
||
|
||
/* Brand Icons
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||
|
||
.icon {
|
||
right: 10px;
|
||
bottom: 2px;
|
||
position: relative;
|
||
vertical-align: middle;
|
||
width: 20px;
|
||
height: 20px;
|
||
-webkit-filter: grayscale(100%);
|
||
-moz-filter: grayscale(100%);
|
||
filter: grayscale(100%);
|
||
}
|
||
|
||
svg {
|
||
color: white !important;
|
||
} |