-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommonStyle.css
88 lines (82 loc) · 1.21 KB
/
commonStyle.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
* {
-ms-user-select: none;
-moz-user-select: -moz-none;
-webkit-user-select: none;
-khtml-user-select: none;
user-select: none;
outline: 0;
margin: 0;
padding: 0;
-webkit-tab-highlight-color: rgba(0, 0, 0, 0);
}
html,
body {
width: 100%;
height: 100%;
}
body {
overflow: hidden;
background-color: #161e38;
}
canvas {
width: 100%;
height: 100%;
}
a {
cursor: pointer;
color: inherit;
text-decoration: inherit;
}
a:link,
a:visited,
a:hover {
color: inherit;
text-decoration: inherit;
}
.textShadow {
text-shadow: 0 0 5px black;
}
.title {
position: fixed;
top: 0;
left: 10px;
color: white;
font-size: 1.5rem;
}
.sign {
position: fixed;
bottom: 0;
right: 2px;
color: white;
font-size: 0.8rem;
cursor: pointer;
}
.sign img {
width: 1rem;
}
.navigation {
position: absolute;
top: 45%;
display: flex;
justify-content: space-between;
width: 100%;
font-size: 0.8rem;
}
.navigation span {
padding: 5px;
cursor: pointer;
color: white;
}
.navigation span:hover {
background: rgba(255, 255, 255, 0.7);
border-radius: 10px;
color: blue;
}
.info {
position: fixed;
bottom: 50%;
width: 100%;
text-align: center;
color: white;
font-size: 1.5rem;
}