blob: ccdf17a4db327937fdedb3596373b797a90a3a1e (
plain)
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
|
@using System
@using Sandbox;
@using Sandbox.MenuSystem;
@using Sandbox.UI;
@attribute [StyleSheet]
@inherits Sandbox.UI.GameMenu.DefaultGameMenu
<style>
.wip-warning {
position: absolute;
z-index: 1000000;
background-color: #FF4136;
font-family: 'Roboto';
font-size: 40px;
width: 100%;
font-weight: 700;
display: flex;
flex-direction: column;
align-items: center;
}
</style>
<root class="gamemainmenu">
<div class="wip-warning">Work in progress! Expect bugs, missing features, and general weird-ness. Things *will* break.</div>
<div class="navigator-canvas" slot="navigator-canvas"></div>
</root>
|