-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
logs.css
167 lines (148 loc) · 3 KB
/
logs.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
html,
body {
height: 100%;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #121212;
color: #e0e0e0;
position: relative;
}
header {
background-color: #1f1f1f;
color: #fff;
padding: 1rem;
text-align: center;
}
header .logo a {
color: #fff;
text-decoration: none;
font-size: 1.5rem;
}
main {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 1;
}
main h1 {
text-align: center;
margin-bottom: 2rem;
font-size: 2rem;
color: #e0e0e0;
}
.log {
background-color: rgba(33, 33, 33, 0.9);
margin-bottom: 1rem;
padding: 1rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.log-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.5rem;
}
.log-header h2 {
margin: 0;
font-size: 1.25rem;
}
.date {
font-size: 0.875rem;
color: #999;
}
.log-content {
font-size: 1rem;
line-height: 1.5;
}
/* user-name::before {
content: '';
position: absolute;
top: 0;
left: -150%;
width: 100%;
height: 100%;
background: linear-gradient(120deg, rgba(190, 11, 11, 0) 0%, rgba(177, 211, 26, 0.5) 50%, rgba(90, 121, 167, 0) 100%);
animation: glow 15s infinite;
} */
/* @keyframes glow {
from {
left: -150%;
}
to {
left: 150%;
}
} */
@keyframes rgb {
0% {
text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000,
0 0 20px #ff0000;
}
20% {
text-shadow: 0 0 5px #ff7f00, 0 0 10px #ff7f00, 0 0 15px #ff7f00,
0 0 20px #ff7f00;
}
40% {
text-shadow: 0 0 5px #ffff00, 0 0 10px #ffff00, 0 0 15px #ffff00,
0 0 20px #ffff00;
}
60% {
text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 15px #00ff00,
0 0 20px #00ff00;
}
80% {
text-shadow: 0 0 5px #0000ff, 0 0 10px #0000ff, 0 0 15px #0000ff,
0 0 20px #0000ff;
}
100% {
text-shadow: 0 0 5px #8b00ff, 0 0 10px #8b00ff, 0 0 15px #8b00ff,
0 0 20px #8b00ff;
}
}
.user-name {
transition: text-shadow 0.3s ease-in-out;
text-shadow: 0px 0px 8px white;
}
.user-name:hover {
animation: rgb 2s infinite;
}
footer {
background-color: #1f1f1f;
color: #fff;
text-align: center;
padding: 1rem;
margin-top: auto;
}
footer p {
margin: 0;
}
/* Background Grid */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: linear-gradient(45deg, #222 25%, transparent 25%),
linear-gradient(135deg, #222 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #222 75%),
linear-gradient(135deg, transparent 75%, #222 75%);
background-size: 20px 20px;
opacity: 0.2;
/* Increased opacity */
z-index: 0;
filter: blur(2px);
pointer-events: none;
}
/* Ensure footer is pushed down by content */
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
main {
flex: 1;
}