-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathindex.css
91 lines (78 loc) · 1.56 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
body {
background-color: rgb(28, 29, 29);
}
.imgfluid{
margin-left: 420px;
margin-top: 20px;
}
.btnShine{
position: absolute;
margin-left: 560px;
transform: translate(-50%,-50%);
padding: 2px 8px;
color: white;
background: linear-gradient(to right, #4d4d4d 0, white 10%, #4d4d4d 20%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: shine 5s infinite linear;
animation-fill-mode: forwards;
-webkit-text-size-adjust: none;
font-weight: 700;
text-decoration: none;
white-space: nowrap;
font-family: 'Times New Roman', Times, serif;
font-size: 2em;
}
@keyframes shine{
0% {background-position: 0px}
60%
{background-position: 180px}
100%
{background-position: 9px}
}
a {
color: #FFFFFF;
text-decoration: none;
}
a:visited{
color: #FFFFFF;
}
a:hover {
color: black;
text-decoration: none;
font-size: 15px;
}
.badge {
padding-top: 5px;
padding-bottom: 6.5px;
}
.badge:hover{
background-color: #F74700;
color: black;
}
/* footer */
footer {
background: #F4F0E1;
border-top: 3px solid #F74700;
margin-top: 100px !important;
text-align: center;
}
footer .container {
padding-top: 50px;
padding-bottom: 50px;
}
footer h1 {
font-family: 'Josefin Sans', sans-serif;
font-size: 3em;
}
.list-group{
margin-top: 45px;
}
li:hover{
background-color: rgb(40, 55, 70);
}
.list-group-item:hover{
color: rgb(70, 214, 63);
font-weight: bold;
}