-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.css
127 lines (113 loc) · 2.22 KB
/
test.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
body, html {
margin: 0;
padding: 0;
height: 100%;
background-color: black;
}
.background-layer {
position: absolute;
top: -110px;
left: 0;
width: 100%;
height: 100%;
background-image: url('./hackerWaterfall.png');
opacity: 0.2;
z-index: 0; /* Ensure the background layer is behind content */
}
.grid-container {
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-template-rows: repeat(3, 1fr);
height: 100vh;
}
.grid-cross-item {
background-image: url('./redlines.png');
background-size: 200% 200%; /* Adjust this property according to your needs */
z-index: 1;
}
.grid-fill-item {
background-color: rgba(255, 0, 0, 0.8);
background-image: url('./redlines.png');
background-size: 200% 200%; /* Adjust this property according to your needs */
z-index: 1;
}
.bottom-left {
position: fixed;
bottom: 0;
left: 25px;
padding: 40px;
color: #fff;
}
.fira-mono-regular {
font-family: "Fira Mono", monospace;
font-weight: 400;
font-style: normal;
line-height: 0.2;
font-size: 14px;
color: #737373;
z-index: 1;
}
.logo {
width: 100px; /* Adjust width as needed */
height: auto; /* Maintain aspect ratio */
fill: white; /* Set fill color to white */
z-index: 2;
position: absolute;
bottom: 50%;
right: 50%;
}
.headingStuff {
font-family: "Fira Mono", monospace;
color: white;
z-index: 2;
text-align: right;
vertical-align: text-top;
font-size: 26px;
position: relative;
bottom: 143px;
left: 200%;
}
.username {
font-family: "Fira Mono", monospace;
color: rgb(255, 0, 0);
z-index: 2;
text-align: right;
vertical-align: text-top;
font-size: 26px;
position: relative;
top: 173px;
right: 283%;
}
@keyframes fadeInOut {
0% {
opacity: 0;
}
49% {
opacity: 0;
}
50% {
opacity: 1;
}
99% {
opacity: 1;
}
100% {
opacity: 0;
}
}
span{
color:#ffffff;
animation: fadeInOut 1.2s infinite;
}
.center-grid-container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
place-items: center; /* Center the logo horizontally and vertically */
top: 0;
left: 0;
position: absolute;
width: 100%;
height: 100%;
z-index: 2; /* Ensure the logo is above other content */
}