Skip to content

Commit 2cd6911

Browse files
feat: Announce Sonysoft Ubivalve
1 parent 6e17220 commit 2cd6911

6 files changed

Lines changed: 908 additions & 463 deletions

File tree

home/templates/home/base.html

Lines changed: 105 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en" xml:lang="en">
33
<head>
44
<meta http-eqiv="Content-Language" content="en" />
5-
<title>Second Robotics</title>
5+
<title>Second Robotics | A Sonysoft Ubivalve Experience</title>
66
{% load static %}
77
<link
88
rel="shortcut icon"
@@ -59,12 +59,21 @@
5959

6060
<body>
6161
<style>
62+
:root {
63+
--sonysoft-red: #ff5a36;
64+
--sonysoft-gold: #ffd166;
65+
--sonysoft-cream: #fff3dc;
66+
--sonysoft-ink: #170f12;
67+
}
6268
html {
6369
position: relative;
6470
min-height: 100%;
6571
}
6672
body {
6773
margin: 0 0 100px;
74+
background:
75+
radial-gradient(circle at top, rgba(255, 209, 102, 0.18), transparent 32%),
76+
linear-gradient(135deg, #160d10 0%, #281116 48%, #3d1916 100%);
6877
}
6978
footer {
7079
position: absolute;
@@ -79,8 +88,73 @@
7988
p.center {
8089
text-align: center;
8190
}
91+
.sonysoft-banner {
92+
background: linear-gradient(90deg, var(--sonysoft-gold), var(--sonysoft-red), #ff7b54);
93+
color: var(--sonysoft-ink);
94+
font-weight: 800;
95+
letter-spacing: 0.04em;
96+
text-transform: uppercase;
97+
text-align: center;
98+
padding: 0.8rem 1rem;
99+
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
100+
}
101+
.sonysoft-banner a {
102+
color: var(--sonysoft-ink);
103+
}
104+
.navbar {
105+
background: rgba(37, 12, 19, 0.92);
106+
border-bottom: 1px solid rgba(255, 209, 102, 0.3);
107+
backdrop-filter: blur(10px);
108+
}
109+
.navbar-brand {
110+
font-weight: 800;
111+
letter-spacing: 0.03em;
112+
}
113+
.navbar-brand-badge {
114+
display: inline-flex;
115+
align-items: center;
116+
justify-content: center;
117+
padding: 0.25rem 0.55rem;
118+
margin-left: 0.6rem;
119+
border-radius: 999px;
120+
background: linear-gradient(135deg, var(--sonysoft-gold), #ff9e57);
121+
color: var(--sonysoft-ink);
122+
font-size: 0.7rem;
123+
font-weight: 900;
124+
vertical-align: middle;
125+
}
126+
.dropdown-menu {
127+
background: #261116;
128+
border: 1px solid rgba(255, 209, 102, 0.18);
129+
}
130+
.dropdown-item {
131+
color: #f7eede;
132+
}
133+
.dropdown-item:hover,
134+
.dropdown-item:focus {
135+
color: #140d11;
136+
background: linear-gradient(135deg, var(--sonysoft-gold), #ff9e57);
137+
}
138+
#content {
139+
padding-bottom: 4rem;
140+
}
141+
footer {
142+
background: rgba(14, 8, 10, 0.88);
143+
border-top: 1px solid rgba(255, 209, 102, 0.22);
144+
}
145+
footer a {
146+
color: var(--sonysoft-cream);
147+
}
82148
</style>
83149

150+
<div class="sonysoft-banner">
151+
Breaking: Second Robotics and xRC Simulator have joined the Sonysoft Ubivalve family.
152+
<br />
153+
<a href="/press-release/sonysoft-ubivalve/">Read the official announcement</a>
154+
or
155+
<a href="/store/xrc-loot-crates/">buy value-enhancing loot crates with $XRC</a>.
156+
</div>
157+
84158
<nav class="navbar navbar-expand-lg navbar-dark sticky-top">
85159
<div class="container-fluid">
86160
<a class="navbar-brand" href="/">
@@ -92,6 +166,7 @@
92166
height="50"
93167
/>
94168
Second Robotics
169+
<span class="navbar-brand-badge">Sonysoft Ubivalve</span>
95170
</a>
96171
<button
97172
class="navbar-toggler"
@@ -115,22 +190,31 @@
115190
>Home</a
116191
>
117192
</li>
193+
<li class="nav-item">
194+
<a class="nav-link" href="/press-release/sonysoft-ubivalve/"
195+
>Press Release</a
196+
>
197+
</li>
198+
<li class="nav-item">
199+
<a class="nav-link" href="/store/xrc-loot-crates/"
200+
>$XRC Crates</a
201+
>
202+
</li>
118203

119-
<!-- Nav Item - About Section -->
120204
<li class="nav-item dropdown">
121205
<a
122206
class="nav-link dropdown-toggle"
123207
href="#"
124-
id="navbarDropdown"
208+
id="legacyDropdown"
125209
role="button"
126210
data-bs-toggle="dropdown"
127211
aria-expanded="false"
128212
>
129-
About
213+
Legacy
130214
</a>
131215
<ul
132216
class="dropdown-menu"
133-
aria-labelledby="navbarDropdown"
217+
aria-labelledby="legacyDropdown"
134218
>
135219
<li>
136220
<a class="dropdown-item" href="/about"
@@ -142,60 +226,31 @@
142226
>Staff</a
143227
>
144228
</li>
145-
<li><hr class="dropdown-divider" /></li>
146229
<li>
147230
<a class="dropdown-item" href="/mrc"
148231
>Minecraft</a
149232
>
150233
</li>
151-
<li><hr class="dropdown-divider" /></li>
152234
<li>
153235
<a class="dropdown-item" href="/logopack"
154236
>Logos</a
155237
>
156238
</li>
157-
</ul>
158-
</li>
159-
160-
<!-- Nav Item - Event stuff -->
161-
<li class="nav-item">
162-
<a
163-
class="nav-link"
164-
aria-current="page"
165-
href="/hall-of-fame"
166-
>Events</a
167-
>
168-
</li>
169-
170-
<!-- Nav Item - Rules -->
171-
<li class="nav-item">
172-
<a
173-
class="nav-link"
174-
aria-current="page"
175-
href="/rules"
176-
>Rules</a
177-
>
178-
</li>
179-
180-
<!-- Nav Item - Highscores -->
181-
<li class="nav-item dropdown">
182-
<a
183-
class="nav-link dropdown-toggle"
184-
href="#"
185-
id="highscoresDropdown"
186-
role="button"
187-
data-bs-toggle="dropdown"
188-
aria-expanded="false"
189-
>
190-
Highscores
191-
</a>
192-
<ul
193-
class="dropdown-menu"
194-
aria-labelledby="highscoresDropdown"
195-
>
239+
<li><hr class="dropdown-divider" /></li>
240+
<li>
241+
<a class="dropdown-item" href="/hall-of-fame"
242+
>Events</a
243+
>
244+
</li>
245+
<li>
246+
<a class="dropdown-item" href="/rules"
247+
>Rules</a
248+
>
249+
</li>
250+
<li><hr class="dropdown-divider" /></li>
196251
<li>
197252
<a class="dropdown-item" href="/highscores"
198-
>Leaderboards</a
253+
>Highscores Leaderboards</a
199254
>
200255
</li>
201256
<li>
@@ -212,27 +267,10 @@
212267
>Overall Leaderboard</a
213268
>
214269
</li>
215-
</ul>
216-
</li>
217-
218-
<li class="nav-item dropdown">
219-
<a
220-
class="nav-link dropdown-toggle"
221-
href="#"
222-
id="rankedDropdown"
223-
role="button"
224-
data-bs-toggle="dropdown"
225-
aria-expanded="false"
226-
>
227-
Ranked
228-
</a>
229-
<ul
230-
class="dropdown-menu"
231-
aria-labelledby="rankedDropdown"
232-
>
270+
<li><hr class="dropdown-divider" /></li>
233271
<li>
234272
<a class="dropdown-item" href="/ranked"
235-
>Leaderboards</a
273+
>Ranked Leaderboards</a
236274
>
237275
</li>
238276
<li>
@@ -359,7 +397,7 @@
359397
<a href="https://github.com/SecondRobotics/SecondWebsite">Open Source</a>
360398
</div>
361399
<div class="footer-copyright" style="margin-top: 1rem; color: var(--text-secondary);">
362-
© 2025 Second Robotics. Built with passion for competitive robotics.
400+
© 2025 Second Robotics, xRC Simulator, and the shareholder delight committee at Sonysoft Ubivalve.
363401
</div>
364402
</div>
365403
</div>

0 commit comments

Comments
 (0)