-
Notifications
You must be signed in to change notification settings - Fork 1
/
brands.css
86 lines (70 loc) · 2 KB
/
brands.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* 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);
}
#avatar {
transform: translatex(-50%);
position: absolute;
top: -4.5rem;
z-index: 1000;
}
.social-icon {
font-size: 32px;
padding: 10px;
}
.social-icon-div {
padding-bottom: 30px;
}
.social-icon{color:var(--title-color);}
/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button {
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
font-size: 1em;
min-height: 58px;
line-height: 58px;
cursor: pointer;
width: 100%;
max-width: 600px;
border-radius: 14px;
margin-bottom: 13px;
color: #fff;
background-color:rgba(193, 166, 255, 0.4);
box-shadow: 0 0 7px -5px rgba(0, 0, 0, 0.5) !important;
backdrop-filter: blur(10px);
}
.button:hover {
color: #fff;
}
/* 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;
}