-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathguide-index.css
62 lines (51 loc) · 1.03 KB
/
guide-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
.xpikachu {
position: relative;
width: 250px;
animation: moveAbout 8s ease-out infinite;
}
@keyframes moveAbout {
0%, 100% {
margin-left: 0;
}
50% {
margin-left: calc(100% - 250px);
}
}
.guides {
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.blue-guides {
background-image: linear-gradient(dodgerblue, navy);
color: blue;
}
.green-guides {
background-image: linear-gradient(lightgreen, darkgreen);
color: green;
}
.yellow-guides {
background-image: linear-gradient(gold, darkgoldenrod);
color: gold;
}
.red-guides {
background-image: linear-gradient(orange, firebrick);
color: red;
}
.guides-container {
display: flex;
justify-content: space-evenly;
text-align: center;
}
ul {
font-size: 1.2rem;
list-style-type: disclosure-closed;
text-align: left;
}
ul > li > a {
text-decoration: none;
}
ul > li > a:hover {
border-bottom-style: solid;
border-bottom-width: 1px;
}