-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
121 lines (102 loc) · 1.56 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
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
@import url('https://fonts.googleapis.com/css?family=Inconsolata|Muli&display=swap');
* {
padding: 0;
margin: 0;
}
body{
overflow: hidden;
background-color: darkblue;
position: relative;
}
canvas{
position:absolute;
left:0;
top:0;
z-index: 0;
}
.menu, .menu a:visited{
z-index: 1;
position:absolute;
text-align:center;
color:#2D5BA4;
font-family: 'Muli', sans-serif;
border-radius: 1.5vw;
overflow:visible;
text-transform: uppercase;
font-weight: bolder;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
text-decoration: none;
}
.menu a{
text-decoration: none;
}
button{
font-size:3vw;
width:20vw;
height:12vh;
background-color: #00077000;
border: 4px solid #2D5BA4;
}
button:hover, .menu:hover a{
background-color: #2D5BA4;
color: DarkBlue;
cursor: pointer;
}
button:focus, .menu:focus a{
outline: none;
box-shadow: none;
color:white;
border: 4px solid white;
}
#QuickPlay{
left:22vw;
top:54vh;
}
#NewGame{
left:58vw;
top:54vh;
}
#About{
left:40vw;
top:74vh;
}
#Title{
left:10vw;
top:15vh;
width:80vw;
height:40vh;
font-size:12.5vw;
text-shadow: 5px 5px #000;
}
.menu_hide{
display:none;
}
#Website{
left:10vw;
top:144vh;
}
#LinkedIn{
left:40vw;
top:144vh;
}
#GitHub{
left:70vw;
top:144vh;
}
#Back{
left:40vw;
top:120vh;
}
#lighting_overlay{
position:absolute;
left:0;
top:0;
z-index: 1;
width:100vw;
height:100vw;
background-image: linear-gradient(-45deg, #FF000040, #FF000080, #FFC922FF);
opacity: 0;
}