-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathhome.css
131 lines (115 loc) · 2.03 KB
/
home.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
body {
background-color: black;
}
.title {
font-weight: bold;
color: rgb(106, 69, 2);
text-align: center;
}
.light {
font-size: 80px;
color: rgba(49, 36, 15, 0.953);
text-align: center;
animation: glow 0.5s ease-in-out infinite alternate;
}
.about p {
padding: 1em;
border-radius: 1em;
}
@media screen and (min-width: 772px) {
.about {
padding: 0 4em;
}
}
@-webkit-keyframes glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e68a00,
0 0 40px #e68a00, 0 0 50px #e68a00, 0 0 60px #e68a00, 0 0 70px #e68a00;
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px #f8bd64, 0 0 40px #f8bd64,
0 0 50px #f8bd64, 0 0 60px #f8bd64, 0 0 70px #f8bd64, 0 0 80px #f8bd64;
}
}
img {
width: 100vw;
height: 80vh;
}
h2 {
font-family: Arial, Helvetica, sans-serif;
color: silver;
text-align: center;
font-weight: 900;
}
h3 {
font-family: Arial, Helvetica, sans-serif;
color: silver;
text-align: center;
font-weight: 900;
animation: glitch 1s linear infinite;
}
@keyframes glitch {
2%,
64% {
transform: translate(2px, 0) skew(0deg);
}
4%,
60% {
transform: translate(-2px, 0) skew(0deg);
}
62% {
transform: translate(0, 0) skew(5deg);
}
}
.bounce {
position: relative;
display: inline-block;
color: #fff;
font-size: 2em;
animation: animate 2s ease-in-out infinite;
}
@keyframes animate {
0% {
transform: translateY(0px);
}
20% {
transform: translateY(-20px);
}
40%,
100% {
transform: translateY(0px);
}
}
p {
text-align: justify;
color: silver;
font-size: larger;
text-align: left;
color: rgb(42, 52, 63);
background-image: linear-gradient(
to right,
rgb(223, 162, 82),
rgb(165, 103, 103)
);
}
.bullet {
background-image: linear-gradient(
to right,
rgb(157, 159, 213),
rgb(165, 103, 103)
);
}
.nav-container {
text-align: center;
}
.nav-link {
color: #ffffff;
text-decoration: none;
}
.nav-link::after {
content: "|";
padding: 0 1.5em;
}
.nav-link:last-child:after {
content: " ";
}