-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
80 lines (77 loc) · 1.53 KB
/
styles.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
body {
font-family: sans-serif;
}
.contact-buttons {
height: 60px;
margin: auto;
text-align: center;
width: 100%;
transform-origin: center;
}
.social {
display: inline-block;
width: 45px;
height: 45px;
line-height: 45px;
text-align: center;
border: 1.5px solid #272628;
border-radius: 28%;
margin-right: 1em;
}
/* Specific colors for each button */
.github-social {
color: #272628;
}
.codepen-social {
color: #272628;
}
.fcc-social {
color: #106e29;
}
.twitter-social {
color: #55acee;
}
.linkedin-social {
color: #007bb5;
}
.medium-social {
color: #3cb371;
}
/* Change specific colors on :hover */
.contact-buttons > a {
transition: all 0.5s;
}
.contact-buttons > a:hover,
.contact-buttons > a:focus {
border: none;
}
.contact-buttons > a.github-social:hover,
.contact-buttons > a.github-social:focus {
color: white;
background-color: #272628;
}
.contact-buttons > a.codepen-social:hover,
.contact-buttons > a.codepen-social:focus {
color: white;
background-color: #272628;
}
.contact-buttons > a.fcc-social:hover,
.contact-buttons > a.fcc-social:focus {
color: white;
background-color: #106e29;
}
.contact-buttons > a.twitter-social:hover,
.contact-buttons > a.twitter-social:focus {
color: white;
background-color: #55acee;
}
.contact-buttons > a.linkedin-social:hover,
.contact-buttons > a.linkedin-social:focus {
color: white;
background-color: #007bb5;
}
.contact-buttons > a.medium-social:hover,
.contact-buttons > a.medium-social:focus {
color: white;
background-color: #3cb371;
}