Final style adjustments.
This commit is contained in:
parent
88a2f045ca
commit
8605917bf3
5 changed files with 182 additions and 7 deletions
162
KAJFORNEY-DB.sql
Normal file
162
KAJFORNEY-DB.sql
Normal file
File diff suppressed because one or more lines are too long
|
@ -144,6 +144,15 @@ input, select, textarea {
|
|||
border: 1px solid #22445b;
|
||||
}
|
||||
|
||||
.parallax {
|
||||
position: relative;
|
||||
background-attachment: fixed;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
|
||||
.navbar-brand {
|
||||
color: steelblue;
|
||||
font-weight: bolder;
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
<meta name="theme-color" content="#488ea7">
|
||||
</head>
|
||||
<body>
|
||||
<body class="parallax">
|
||||
<div id="navbar">
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
||||
<div class="container-fluid">
|
||||
|
@ -30,7 +30,9 @@
|
|||
<div class="collapse navbar-collapse" id="navbarMenu">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="navbar-brand">
|
||||
<a href="index.html">PRESSURIZED GAS</a>
|
||||
<a href="index.html">
|
||||
<img src="img/logo.png">
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="nav-item m-2 align-content-end">
|
||||
|
@ -94,15 +96,15 @@
|
|||
function osSupport(win, mac, lnx) {
|
||||
let osString = "";
|
||||
if (win == 1) {
|
||||
osString += "<i class=\"fa-brands fa-windows mx-2\"></i>"
|
||||
osString += "<i class=\"fa-brands fa-windows mx-2\" title='Supports Windows'></i>"
|
||||
}
|
||||
;
|
||||
if (mac == 1) {
|
||||
osString += "<i class=\"fa-brands fa-apple mx-2\"></i>"
|
||||
osString += "<i class=\"fa-brands fa-apple mx-2\" title='Supports MacOS'></i>"
|
||||
}
|
||||
;
|
||||
if (lnx == 1) {
|
||||
osString += "<i class=\"fa-brands fa-linux mx-2\"></i>"
|
||||
osString += "<i class=\"fa-brands fa-linux mx-2\" title='Supports Linux'></i>"
|
||||
}
|
||||
;
|
||||
return osString;
|
||||
|
|
BIN
server/public/img/logo.png
Normal file
BIN
server/public/img/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
|
@ -20,7 +20,7 @@
|
|||
<script src="https://kit.fontawesome.com/55072ce5fd.js" crossorigin="anonymous" defer></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<body class="parallax">
|
||||
|
||||
<div id="navbar">
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
||||
|
@ -33,7 +33,9 @@
|
|||
<div class="collapse navbar-collapse" id="navbarMenu">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="navbar-brand">
|
||||
<a href="index.html">PRESSURIZED GAS</a>
|
||||
<a href="index.html">
|
||||
<img src="img/logo.png"/>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="nav-item m-2 align-content-end">
|
||||
|
|
Loading…
Reference in a new issue