-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (75 loc) · 1.36 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
@keyframes color {
0% {color: rgba(153, 0, 0, .8);}
10% {color: rgba(153, 204, 0, .8);}
20% {color: rgba(153, 207, 255, .8);}
30% {color: rgba(0, 100, 255, .8);}
40% {color: rgba(0, 157, 54, .8);}
50% {color: rgba(0, 212, 209, .8);}
60% {color: rgba(0, 255, 0, .8);}
70% {color: rgba(255, 255, 0, .8);}
80% {color: rgba(255, 143, 0, .8);}
90% {color: rgba(96, 232, 172, .8);}
100% {color: rgba(153, 0, 0, .8);}
}
* {
margin: 0;
padding: 0;
}
*::selection {
color: #00B390;
}
html, body {
height: 100%;
width: 100%;
}
body {
flex-direction: column;
}
.flex {
display: flex;
justify-content: center;
align-items: center;
}
.wrapper-title {
flex-direction: column;
margin-bottom: 10%;
margin-top: -10%;
}
h1 {
font-size: 4em;
}
h2 {
font-size: 2em;
}
h1,h2 {
animation: color 40s linear infinite;
text-shadow: 0 0 5px #000;
}
a {
display: block;
text-decoration: none;
color: #0000ff;
font-size: 25px;
margin: 0 25px;
transition: 0.4s;
text-shadow: 0 0 2px black;
}
a:visited {
color: black;
}
a:hover {
transform: scale(1.5);
color: red;
text-shadow: 0 0 15px red;
}
a:after {
display: block;
content: '';
height: 1px;
width: 0%;
background: red;
transition: 0.4s;
}
a:hover:after {
width: 100%;
}