-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathstyle.css
58 lines (49 loc) · 1.02 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
body {
margin: 0;
}
a {
transition: 1s ease-in-out;
text-decoration: none;
color: white;
font-size: 30px;
}
.ad {
display: flex;
justify-content: center;
align-items: center;
height: 7vh; /* Adjust the height as needed */
font-family: 'Inter', monospace;
color:white;
}
.ad1 {
background-color: #2B2D31; /* Update if needed */
}
.ad2 {
background-color: #2B2D31; /* Example background color for ad2, update as needed */
}
.container {
display: flex;
justify-content: space-evenly;
align-items: center;
height: 86vh;
background-image: url(bggg.png);
}
.nameofsite {
font-family: 'Inter', sans-serif;
color: aliceblue;
font-size: 100px;
}
a:hover {
color: blueviolet;
}
@keyframes moveUp {
from {
background-position: 0 0; /* Initial background position */
}
to {
background-position: 0 -20000vh; /* Move background up by the height of the container */
}
}
.container {
animation: moveUp 9999s linear infinite; /* Adjust the duration and timing function as needed */
}