-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
53 lines (46 loc) · 1.03 KB
/
main.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
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
a:link, a:visited {
color: #30d1a9;
text-align: center;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
a:active {
color: #249c7d;
text-decoration: none;
}
body{
overflow: hidden;
position: relative;
width: 100vw;
height: 100vh;
padding: 0;
margin: 0;
}
canvas{
border: solid 2px;
position: relative;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
}
#about{
font-family: 'Ubuntu', sans-serif;
font-size: 1.6em;
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 30px;
z-index: 100;
color: #30d1a9;
}