forked from bhavesh1129/First-Hacktoberfest2021-Contribution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (70 loc) · 1.43 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap');
* {
margin: 0;
padding: 0;
color: #ff6600;
text-align: center;
}
body {
background-image: url(/img/bg2.jpg);
font-family: 'Poppins', sans-serif;
padding: 50px;
}
.content {
text-align: center;
width: 100%;
}
h1 {
color: #01ffff;
text-align: center;
margin-bottom: 5px;
}
a {
color: #2b81d8;
text-decoration: none;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
i.fas {
color: #01ffff;
}
i.fab {
color: #0565bf;
}
i:hover {
color: #01ffff;
}
a:hover,
a:focus {
color: #01ffff;
}
img {
max-width: 80%;
padding: 5%;
}
.contributors {
width: 87%;
margin-right: auto;
margin-left: auto;
padding-bottom: 2em;
}
.contributors a:not(:last-of-type)::after {
content: " |";
color: #ff7e29;
}
@media (max-width: 600px) {
.contributors {
display: flex;
flex-direction: column;
}
.contributors a {
margin: 5px 0;
}
.contributors a:not(:last-of-type)::after {
content: "";
}
}
.contributors a {position: relative;}
.contributors a span {position: absolute; display: none; margin-left: auto; margin-right: auto; left: 0 ; }
.contributors a span img{border-radius: 80px;}
.contributors a:hover span {display: block;}