-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (76 loc) · 1.26 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
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
* {
margin: 0 auto;
}
canvas {
position: fixed;
z-index: 10;
top: 0;
left: 0;
z-index: 2;
pointer-events: none;
/* visibility: hidden; */
opacity: 1;
}
.center {
top: 0;
bottom: 0;
right: 0;
left: 0;
position: absolute;
margin: auto;
}
.outer {
/* background: rgb(34, 30, 51);
background: -webkit-linear-gradient(
bottom,
rgb(34, 30, 51) 0%,
rgba(32, 38, 38, 1) 100%
);
background: -o-linear-gradient(
bottom,
rgb(34, 30, 51) 0%,
rgba(32, 38, 38, 1) 100%
);
background: linear-gradient(
to top,
rgb(51, 45, 30) 100%,
rgba(32, 38, 38, 1) 0%
); */
background: url("https://aliabidzaidi.github.io/three-js/milky-way.jpg") repeat;
height: 100%;
width: 100%;
}
img {
height: 45%;
opacity: 1;
transform: rotate(-110deg);
}
body {
font-family: Monospace;
background-color: rgb(34, 30, 51);
color: #fff;
margin: 0px;
overflow: hidden;
}
#info {
color: #fff;
/* position: absolute; */
margin-top: 10px;
top: 10px;
width: 100%;
text-align: center;
z-index: 100;
display: block;
}
#info a,
.button {
font-size: 18px;
color: #fff;
text-decoration: none;
cursor: pointer;
margin: 10px;
}
#info a:hover {
font-weight: bold;
text-decoration: underline;
}