-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (45 loc) · 834 Bytes
/
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
body{
color: black;
font-size:;
}
body::-webkit-scrollbar {
display: none;
}
/* Hide scroll bars for Firefox */
body {
scrollbar-width: none;
}
h1
{
color: #10CA02;
font-weight: bolder;
font-size: x-large;
}
h2{
color: black;
font-weight:bolder ;
font-size: 1.5rem;
text-align: center;
}
h4{
font-weight: bold;
}
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-15px);
}
}
.bounce-element:hover {
animation: bounce 0.5s ease infinite;
}
.hover-line {
display: inline-block;
padding-bottom: 10px; /* Space for the line */
transition: border-bottom 0.3s ease; /* Smooth transition for the line */
}
.hover-line:hover {
border-bottom: 4px solid grey; /* Style of the line on hover */
}