-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
169 lines (157 loc) · 2.88 KB
/
style.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
:root {
--link-size: 64px;
--trans-property: all 0.3s ease;
}
body,
h2,
h3,
h4,
h5 {
font-family: "Raleway", sans-serif;
}
header h1 {
font-family: "Water Brush", cursive;
}
.title h1 {
text-align: center;
color: #222;
letter-spacing: 1px;
font-weight: 400;
}
.title h1 span {
margin-top: 5px;
font-size: 15px;
color: #444;
word-spacing: 1px;
font-weight: normal;
letter-spacing: 2px;
text-transform: uppercase;
font-family: "Raleway", sans-serif;
font-weight: 500;
display: grid;
grid-template-columns: 1fr max-content 1fr;
grid-template-rows: 27px 0;
grid-gap: 20px;
align-items: center;
}
.title h1 span:after,
.title h1 span:before {
content: " ";
display: block;
border-bottom: 1px solid #ccc;
border-top: 1px solid #ccc;
height: 5px;
background-color: #f8f8f8;
}
.footer {
background: #232a34;
padding-bottom: 30px;
padding-top: 30px;
}
/*START FOOTER SOCIAL DESIGN*/
.footer_profile {
margin-bottom: 40px;
}
.footer_profile ul {
list-style: outside none none;
margin: 0;
padding: 0;
}
.footer_profile ul li {
display: inline-block;
align-items: center;
}
.footer_copyright {
text-align: center;
}
@media only screen and (max-width: 480px) {
.footer_profile ul li {
margin: 2px;
}
}
.footer_profile ul li a img {
width: 60px;
}
.footer_profile ul li a {
width: 40px;
height: 40px;
display: block;
text-align: center;
margin-right: 5px;
border-radius: 50%;
line-height: 40px;
box-sizing: border-box;
text-decoration: none;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.footer_copyright {
margin-bottom: 20px;
text-transform: uppercase;
font-size: 12px;
font-family: "Montserrat", sans-serif;
font-weight: 600;
color: #fff;
}
.social-icons {
display: flex;
align-items: center;
justify-content: center;
}
.social-icon {
display: flex;
position: relative;
overflow: hidden;
width: var(--link-size);
height: var(--link-size);
margin: 8px;
background-color: white;
border-radius: 50%;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12);
text-decoration: none;
transition: var(--trans-property);
}
.social-icon i {
margin: auto;
font-size: 24px;
z-index: 1;
transition: var(--trans-property);
}
.social-icon:after {
content: "";
width: var(--link-size);
height: var(--link-size);
position: absolute;
transform: translate(0, var(--link-size));
border-radius: 50%;
transition: var(--trans-property);
}
.social-icon.twitter:after {
background-color: #1da1f2;
}
.social-icon.github:after {
background-color: #24292e;
}
.social-icon.dribbble:after {
background-color: #ea4c89;
}
.social-icon.instagram:after {
background-color: #5851db;
}
.social-icon.facebook:after {
background-color: #1769ff;
}
/*** Animations ***/
.social-icon:hover {
transform: translateY(-4px);
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
}
.social-icon:hover i {
color: #fff;
}
.social-icon:hover:after {
transform: translate(0) scale(1.2);
}
.fa-heart {
color: red;
}