-
Notifications
You must be signed in to change notification settings - Fork 0
/
nrw.html
164 lines (146 loc) · 4.07 KB
/
nrw.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>nrw</title>
<style>
html,
body {
height: 100%;
overflow: hidden;
}
body {
text-align: center;
background: #000080;
background: linear-gradient(#000000 1%, #000080 44%, #3472a1 1%, #0c141f 50%);
}
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.inner-wrapper {
width: 100%;
height: 100%;
position: absolute;
margin: 0 auto;
perspective: 180px;
perspective-origin: 50% 40%;
}
.landscape {
position: absolute;
width: 200%;
left: -51%;
height: 150%;
bottom: -22rem;
background-image: -webkit-linear-gradient(top, #ff00ff 2px, transparent 2px), -webkit-linear-gradient(left, #ff00ff 2px, transparent 2px);
background-size: 50px 50px, 200px 200px;
background-position: -1px -1px, -1px -1px;
transform: rotateX(85deg);
animation: moveUp .5s infinite linear;
}
@keyframes moveUp {
0% {
background-position: -50px -50px, -1px -1px;
}
100% {
background-position: -1px -1px, -1px -1px;
}
}
.container {
display: flex;
justify-content: center;
overflow: hidden;
height: 43%;
}
.sun-container {
top: 1rem;
position: relative;
opacity: .85;
height: 50rem;
width: 50rem;
}
.sun {
width: 100%;
height: 100%;
background: linear-gradient(358deg, #ff00ff 0%, #ff00ff 45%, #fefd7d 100%);
border-radius: 50%;
position: relative;
overflow: hidden;
box-shadow: 0px 0px 100px 0px #ff00ff;
z-index: -1;
}
.bar {
height: 1%;
width: 100%;
background-color: #000080;
margin-bottom: 5%;
opacity: 0.6;
}
.bars {
width: 100%;
height: 100%;
margin-top: 0px;
position: absolute;
overflow: hidden;
filter: blur(1px);
}
.scanlines {
z-index: 1;
top: 0;
bottom: 0;
position: fixed;
overflow: hidden;
width: 100%;
background: linear-gradient(to bottom,
transparent 50%,
rgba(0, 0, 0, 0.2) 50%);
background-size: 100% 10px;
}
</style>
</head>
<body>
<div class="scanlines"></div>
<div class="container">
<div class="sun-container">
<div class="sun">
<div class="bars">
<div class="bar" style="height:1px; background: #000010;"></div>
<div class="bar" style="height:5px; background: #000022"></div>
<div class="bar" style="height:10px; background: #000021"></div>
<div class="bar" style="height:15px; background: #000035"></div>
<div class="bar" style="height:25px; background: #00004b"></div>
<div class="bar" style="height:30px; background: #000065"></div>
<div class="bar" style="height:35px; background: #00007d"></div>
</div>
</div>
</div>
<div class="inner-wrapper">
<div class="landscape"></div>
</div>
</div>
<iframe
width="0"
height="0"
scrolling="no"
frameborder="no"
allow="autoplay"
src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/473109036&color=%235c145c&auto_play=true&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"
></iframe>
</body>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-139851154-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-139851154-1");
</script>
</html>