Skip to content

Commit bdab88c

Browse files
yeeaahh
1 parent 1328005 commit bdab88c

File tree

2 files changed

+77
-0
lines changed

2 files changed

+77
-0
lines changed

uncool/index.html

Whitespace-only changes.

uncool/style.css

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
html, body {
2+
background-color: #000;
3+
color: #fff;
4+
padding: 0;
5+
margin: 0;
6+
text-align: center;
7+
font-size: 69px;
8+
font-family: 'Courier New', Courier, monospace;
9+
font-weight: bold;
10+
}
11+
12+
.center {
13+
position: absolute;
14+
top: 50%;
15+
left: 50%;
16+
transform: translate(-50%, -50%);
17+
}
18+
19+
.blink {
20+
animation: blink .2s infinite;
21+
}
22+
23+
@keyframes blink {
24+
0% {
25+
opacity: 1;
26+
}
27+
50% {
28+
opacity: 0;
29+
}
30+
100% {
31+
opacity: 1;
32+
}
33+
}
34+
35+
.bg {
36+
z-index: 1;
37+
width: 100%;
38+
height: 200vh;
39+
position: absolute;
40+
top: 0;
41+
left: 0;
42+
}
43+
44+
.page {
45+
height: 100vh;
46+
position: relative;
47+
}
48+
49+
.note {
50+
position: absolute;
51+
bottom: 0;
52+
left: 0;
53+
right: 0;
54+
font-size: 28px;
55+
}
56+
57+
.colored {
58+
background-color: pink;
59+
}
60+
61+
ul, li, ol {
62+
list-style: none;
63+
}
64+
65+
a:link, a:visited {
66+
color: #fff;
67+
}
68+
69+
@media (prefers-reduced-motion: reduce) {
70+
.blink {
71+
animation: none;
72+
}
73+
74+
.bg {
75+
display: none;
76+
}
77+
}

0 commit comments

Comments
 (0)