forked from nekosheen/PaperBold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brands.css
149 lines (119 loc) · 2.81 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* 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);
} */
@-webkit-keyframes rainbow {
0% {
background-position: 0% 82%
}
50% {
background-position: 100% 19%
}
100% {
background-position: 0% 82%
}
}
@-moz-keyframes rainbow {
0% {
background-position: 0% 82%
}
50% {
background-position: 100% 19%
}
100% {
background-position: 0% 82%
}
}
@-o-keyframes rainbow {
0% {
background-position: 0% 82%
}
50% {
background-position: 100% 19%
}
100% {
background-position: 0% 82%
}
}
@keyframes rainbow {
0% {
background-position: 0% 82%
}
50% {
background-position: 100% 19%
}
100% {
background-position: 0% 82%
}
}
.social-icon {
font-size: 32px;
padding: 10px;
}
.social-icon-div {
padding-bottom: 30px;
}
.social-icon {
color: #000;
}
/* 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: 20px !important;
font-weight: 350;
/* letter-spacing: 0.3rem; */
border: 1px solid black;
box-shadow: 6px 4px 0px 5px #000000 !important;
}
.button {
display: inline-block;
transition-duration: 0.3s;
transform: translateZ(0);
box-shadow: 0 0 1px rgba(3, 218, 198, 30%);
}
.button:hover {
box-shadow: 0 0 6px rgba(3, 218, 198, 30%);
}
/* Brand Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.icon {
right: 10px;
bottom: 2px;
position: relative;
vertical-align: middle;
width: 20px;
height: 20px;
-webkit-filter: brightness(0%);
-moz-filter: brightness(0%);
filter: brightness(0%);
}
svg {
color: white !important;
}