-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathHeader.php
More file actions
45 lines (40 loc) · 1.05 KB
/
Header.php
File metadata and controls
45 lines (40 loc) · 1.05 KB
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
<div class="header-wrapper">
<div class="home-header">
<div class="title">
<a href="./MainMenu.php" class="title title-container bg-yellow">
<h1 class="home-title" style="white-space: nowrap;">Petrana<span>k</span>i</h1>
<p>
Fan-Made, Open-Source
<br/>Star Wars Unlimited Simulator
</p>
</a>
</div>
</div>
</div>
<style>
/* Responsive styles for Header */
@media screen and (max-width: 768px) {
.home-header {
height: auto !important;
padding: 5px 0 !important;
position: relative;
pointer-events: auto !important;
z-index: 30;
}
.title-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 10px !important;
}
.home-title {
font-size: 1.8rem !important;
margin-bottom: 5px;
}
.title p {
font-size: 0.8rem;
text-align: center;
line-height: 1.2;
}
}
</style>