new nord theming
This commit is contained in:
parent
b2989bfc4b
commit
538595b67b
@ -4,13 +4,13 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Everest Linux - About</title>
|
<title>Everest Linux - About</title>
|
||||||
<link type="text/css" rel="stylesheet" href="css/everest.css"/>
|
<link type="text/css" rel="stylesheet" href="css/nord.css"/>
|
||||||
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
|
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<div class="sidenav">
|
<div class="sidenav">
|
||||||
<img src="img/everest-k2.svg" alt="everest-logo">
|
<img src="img/everest-nord.svg" alt="everest-logo">
|
||||||
<a href="index.html">Home</a>
|
<a href="index.html">Home</a>
|
||||||
<a href="about.html">About</a>
|
<a href="about.html">About</a>
|
||||||
<a href="install.html">Install</a>
|
<a href="install.html">Install</a>
|
||||||
|
271
css/nord.css
Normal file
271
css/nord.css
Normal file
@ -0,0 +1,271 @@
|
|||||||
|
/* css/everest.css - stylesheet for everest-web */
|
||||||
|
/*
|
||||||
|
Copyright (C) 2023 Everest Linux.
|
||||||
|
Permission is granted to copy, distribute and/or modify this document
|
||||||
|
under the terms of the GNU Free Documentation License, Version 1.3
|
||||||
|
or any later version published by the Free Software Foundation;
|
||||||
|
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
|
||||||
|
A copy of the license is included in the section entitled "GNU
|
||||||
|
Free Documentation License".
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Sidebar menu */
|
||||||
|
.sidenav {
|
||||||
|
height: 100%;
|
||||||
|
width: 160px;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 1;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
background-color: #2E3440;
|
||||||
|
overflow-x: hidden;
|
||||||
|
padding-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Menu links */
|
||||||
|
.sidenav a {
|
||||||
|
padding: 6px 8px 6px 16px;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 20px;
|
||||||
|
color: #D8DEE9;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidenav a:hover {
|
||||||
|
color: #ECEFF4;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
background-color: #3B4252;
|
||||||
|
color: #ECEFF4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main {
|
||||||
|
margin-left: 160px;
|
||||||
|
padding: 0px 10px;
|
||||||
|
background-color: #3B4252;
|
||||||
|
}
|
||||||
|
|
||||||
|
.file {
|
||||||
|
font-family: monospace;
|
||||||
|
background-color: #2E3440;
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-color: #A3BE8C;
|
||||||
|
border-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 4px;
|
||||||
|
width: 50%;
|
||||||
|
color: #ECEFF4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.kernel {
|
||||||
|
font-family: monospace;
|
||||||
|
background-color: #2E3440;
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-color: #B48EAD;
|
||||||
|
border-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 4px;
|
||||||
|
width: 50%;
|
||||||
|
color: #ECEFF4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.warning {
|
||||||
|
background-color: #BF616A;
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-color: #BF616A;
|
||||||
|
border-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 4px;
|
||||||
|
width: 50%;
|
||||||
|
color: #2E3440;
|
||||||
|
}
|
||||||
|
|
||||||
|
.news {
|
||||||
|
background-color: #2E3440;
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-color: #88C0D0;
|
||||||
|
border-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 4px;
|
||||||
|
width: 50%;
|
||||||
|
color: #ECEFF4;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Everything below this line isn't styled yet */
|
||||||
|
|
||||||
|
fhead {
|
||||||
|
background-color: #2E3440;
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-color: #A3BE8C;
|
||||||
|
border-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 6px;
|
||||||
|
width: 50%;
|
||||||
|
color: #A3BE8C;
|
||||||
|
}
|
||||||
|
|
||||||
|
khead {
|
||||||
|
background-color: #2E3440;
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-color: #B48EAD;
|
||||||
|
border-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 6px;
|
||||||
|
width: 50%;
|
||||||
|
color: #B48EAD;
|
||||||
|
}
|
||||||
|
|
||||||
|
warnhead {
|
||||||
|
background-color: #BF616A;
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-color: #BF616A;
|
||||||
|
border-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 6px;
|
||||||
|
width: 50%;
|
||||||
|
color: #2E3440;
|
||||||
|
}
|
||||||
|
|
||||||
|
newshead {
|
||||||
|
background-color: #2E3440;
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-color: #88C0D0;
|
||||||
|
border-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 4px;
|
||||||
|
width: 50%;
|
||||||
|
color: #88C0D0;
|
||||||
|
}
|
||||||
|
|
||||||
|
wikihead {
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-color: #D08770;
|
||||||
|
border-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 6px;
|
||||||
|
color: #D08770;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-height: 450px) {
|
||||||
|
.sidenav {padding-top: 15px;}
|
||||||
|
.sidenav a{font-size: 18px;}
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: sans-serif;
|
||||||
|
background-color: #3B4252;
|
||||||
|
color: #ECEFF4;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
font-family: monospace;
|
||||||
|
background-color: #2E3440;
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 2px;
|
||||||
|
color: #ECEFF4;
|
||||||
|
}
|
||||||
|
|
||||||
|
wiki {
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 6px;
|
||||||
|
border-color: #D08770;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* file {
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 2px;
|
||||||
|
border-color: black;
|
||||||
|
} */
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
border-left-style: solid;
|
||||||
|
border-color: #88C0D0;
|
||||||
|
padding-left: 4px;
|
||||||
|
border-left-width: 6px;
|
||||||
|
border-radius: 5px;
|
||||||
|
color: #ECEFF4;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
font-size: 24px;
|
||||||
|
border-style: none;
|
||||||
|
border-left-style: solid;
|
||||||
|
border-width: 8px;
|
||||||
|
padding: 12px 28px;
|
||||||
|
border-color: #88C0D0;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #434C5E;
|
||||||
|
color: #ECEFF4;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hover {
|
||||||
|
background-color: #4C566A;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr.dotted {
|
||||||
|
border-top: 3px dotted #bbb;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* p {
|
||||||
|
color: #e6e6e6;
|
||||||
|
} */
|
||||||
|
|
||||||
|
/* strong {
|
||||||
|
color: #4a86e8ff;
|
||||||
|
} */
|
||||||
|
|
||||||
|
/* i {
|
||||||
|
color: #e6e6e6;
|
||||||
|
} */
|
||||||
|
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 10px;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#myInput {
|
||||||
|
width: 378px;
|
||||||
|
font-size: 16px;
|
||||||
|
padding: 10px;
|
||||||
|
border: 2px solid #88C0D0;
|
||||||
|
border-radius: 2px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
background-color: #434C5E;
|
||||||
|
color: #ECEFF4;
|
||||||
|
}
|
||||||
|
|
||||||
|
#myUL {
|
||||||
|
width: 400px;
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#myUL li a {
|
||||||
|
border-left-width: 2px;
|
||||||
|
border-left-style: solid;
|
||||||
|
border-left-color: #88C0D0;
|
||||||
|
margin-top: -1px;
|
||||||
|
background-color: #434C5E;
|
||||||
|
padding: 12px;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 18px;
|
||||||
|
color: #ECEFF4;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#myUL li a:hover:not(.header) {
|
||||||
|
background-color: #4C566A;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
padding: 8px;
|
||||||
|
}
|
@ -4,13 +4,13 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Everest Linux - Docs</title>
|
<title>Everest Linux - Docs</title>
|
||||||
<link type="text/css" rel="stylesheet" href="../css/everest.css"/>
|
<link type="text/css" rel="stylesheet" href="../css/nord.css"/>
|
||||||
<link rel="icon" type="image/x-icon" href="../img/favicon.svg"/>
|
<link rel="icon" type="image/x-icon" href="../img/favicon.svg"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<div class="sidenav">
|
<div class="sidenav">
|
||||||
<img src="../img/everest-k2.svg" alt="everest-logo">
|
<img src="../img/everest-nord.svg" alt="everest-logo">
|
||||||
<a href="../index.html">Home</a>
|
<a href="../index.html">Home</a>
|
||||||
<a href="../about.html">About</a>
|
<a href="../about.html">About</a>
|
||||||
<a href="../install.html">Install</a>
|
<a href="../install.html">Install</a>
|
||||||
|
@ -4,13 +4,13 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Everest Linux - Docs</title>
|
<title>Everest Linux - Docs</title>
|
||||||
<link type="text/css" rel="stylesheet" href="../css/everest.css"/>
|
<link type="text/css" rel="stylesheet" href="../css/nord.css"/>
|
||||||
<link rel="icon" type="image/x-icon" href="../img/favicon.svg"/>
|
<link rel="icon" type="image/x-icon" href="../img/favicon.svg"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<div class="sidenav">
|
<div class="sidenav">
|
||||||
<img src="../img/everest-k2.svg" alt="everest-logo">
|
<img src="../img/everest-nord.svg" alt="everest-logo">
|
||||||
<a href="../index.html">Home</a>
|
<a href="../index.html">Home</a>
|
||||||
<a href="../about.html">About</a>
|
<a href="../about.html">About</a>
|
||||||
<a href="../install.html">Install</a>
|
<a href="../install.html">Install</a>
|
||||||
|
@ -4,13 +4,13 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Everest Linux - Docs</title>
|
<title>Everest Linux - Docs</title>
|
||||||
<link type="text/css" rel="stylesheet" href="../css/everest.css"/>
|
<link type="text/css" rel="stylesheet" href="../css/nord.css"/>
|
||||||
<link rel="icon" type="image/x-icon" href="../img/favicon.svg"/>
|
<link rel="icon" type="image/x-icon" href="../img/favicon.svg"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<div class="sidenav">
|
<div class="sidenav">
|
||||||
<img src="../img/everest-k2.svg" alt="everest-logo">
|
<img src="../img/everest-nord.svg" alt="everest-logo">
|
||||||
<a href="../index.html">Home</a>
|
<a href="../index.html">Home</a>
|
||||||
<a href="../about.html">About</a>
|
<a href="../about.html">About</a>
|
||||||
<a href="../install.html">Install</a>
|
<a href="../install.html">Install</a>
|
||||||
|
@ -4,12 +4,12 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Everest Linux - Docs</title>
|
<title>Everest Linux - Docs</title>
|
||||||
<link type="text/css" rel="stylesheet" href="../css/everest.css"/>
|
<link type="text/css" rel="stylesheet" href="../css/nord.css"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<div class="sidenav">
|
<div class="sidenav">
|
||||||
<img src="../img/everest-k2.svg" alt="everest-logo">
|
<img src="../img/everest-nord.svg" alt="everest-logo">
|
||||||
<a href="../index.html">Home</a>
|
<a href="../index.html">Home</a>
|
||||||
<a href="../about.html">About</a>
|
<a href="../about.html">About</a>
|
||||||
<a href="../install.html">Install</a>
|
<a href="../install.html">Install</a>
|
||||||
|
@ -4,12 +4,12 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Everest Linux - Docs</title>
|
<title>Everest Linux - Docs</title>
|
||||||
<link type="text/css" rel="stylesheet" href="../css/everest.css"/>
|
<link type="text/css" rel="stylesheet" href="../css/nord.css"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<div class="sidenav">
|
<div class="sidenav">
|
||||||
<img src="../img/everest-k2.svg" alt="everest-logo">
|
<img src="../img/everest-nord.svg" alt="everest-logo">
|
||||||
<a href="../index.html">Home</a>
|
<a href="../index.html">Home</a>
|
||||||
<a href="../about.html">About</a>
|
<a href="../about.html">About</a>
|
||||||
<a href="../install.html">Install</a>
|
<a href="../install.html">Install</a>
|
||||||
|
@ -4,13 +4,13 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Everest Linux - Downloads</title>
|
<title>Everest Linux - Downloads</title>
|
||||||
<link type="text/css" rel="stylesheet" href="css/everest.css"/>
|
<link type="text/css" rel="stylesheet" href="css/nord.css"/>
|
||||||
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
|
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<div class="sidenav">
|
<div class="sidenav">
|
||||||
<img src="img/everest-k2.svg" alt="everest-logo">
|
<img src="img/everest-nord.svg" alt="everest-logo">
|
||||||
<a href="index.html">Home</a>
|
<a href="index.html">Home</a>
|
||||||
<a href="about.html">About</a>
|
<a href="about.html">About</a>
|
||||||
<a href="install.html">Install</a>
|
<a href="install.html">Install</a>
|
||||||
|
@ -4,13 +4,13 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Everest Linux - Errata</title>
|
<title>Everest Linux - Errata</title>
|
||||||
<link type="text/css" rel="stylesheet" href="css/everest.css"/>
|
<link type="text/css" rel="stylesheet" href="css/nord.css"/>
|
||||||
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
|
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<div class="sidenav">
|
<div class="sidenav">
|
||||||
<img src="img/everest-k2.svg" alt="everest-logo">
|
<img src="img/everest-nord.svg" alt="everest-logo">
|
||||||
<a href="index.html">Home</a>
|
<a href="index.html">Home</a>
|
||||||
<a href="about.html">About</a>
|
<a href="about.html">About</a>
|
||||||
<a href="install.html">Install</a>
|
<a href="install.html">Install</a>
|
||||||
|
BIN
img/everest-nord.png
Normal file
BIN
img/everest-nord.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
1
img/everest-nord.svg
Normal file
1
img/everest-nord.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg version="1.1" viewBox="0.0 0.0 649.0 485.0" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><clipPath id="p.0"><path d="m0 0l649.0 0l0 485.0l-649.0 0l0 -485.0z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l649.0 0l0 485.0l-649.0 0z" fill-rule="evenodd"/><path fill="#88c0d0" d="m31.519686 468.3622l194.38202 -378.26773l133.83844 378.26773z" fill-rule="evenodd"/><path stroke="#88c0d0" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m31.519686 468.3622l194.38202 -378.26773l133.83844 378.26773z" fill-rule="evenodd"/><path fill="#5e81ac" d="m412.7575 222.75516l-135.9685 261.5433l-135.9685 -261.5433z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m412.7575 222.75516l-135.9685 261.5433l-135.9685 -261.5433z" fill-rule="evenodd"/><path fill="#666666" d="m276.48984 484.30145l135.9685 -261.5433l135.96854 261.5433z" fill-rule="evenodd"/><path stroke="#666666" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m276.48984 484.30145l135.9685 -261.5433l135.96854 261.5433z" fill-rule="evenodd"/><path fill="#5e81ac" d="m0 484.29922l130.77936 -246.89764l98.44899 246.89764z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m0 484.29922l130.77936 -246.89764l98.44899 246.89764z" fill-rule="evenodd"/><path fill="#5e81ac" d="m276.4908 484.3176l185.43307 -378.26773l185.43304 378.26773z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m276.4908 484.3176l185.43307 -378.26773l185.43304 378.26773z" fill-rule="evenodd"/><path fill="#88c0d0" d="m205.22047 134.99213l71.574814 -134.99213l71.5748 134.99213z" fill-rule="evenodd"/><path stroke="#88c0d0" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m205.22047 134.99213l71.574814 -134.99213l71.5748 134.99213z" fill-rule="evenodd"/><path fill="#5e81ac" d="m140.82677 222.7559l70.13112 -134.99213l131.67477 0l70.131134 134.99213z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m140.82677 222.7559l70.13112 -134.99213l131.67477 0l70.131134 134.99213z" fill-rule="evenodd"/><path fill="#5e81ac" d="m205.21523 99.13386l30.761414 -63.27559l112.3882 63.27559z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m205.21523 99.13386l30.761414 -63.27559l112.3882 63.27559z" fill-rule="evenodd"/><path fill="#5e81ac" d="m205.22047 199.58267l195.68504 0l0 110.77167l-195.68504 0z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m205.22047 199.58267l195.68504 0l0 110.77167l-195.68504 0z" fill-rule="evenodd"/><path fill="#5e81ac" d="m385.25198 283.9475l-106.83533 198.3937l-97.82611 -198.3937z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m385.25198 283.9475l-106.83533 198.3937l-97.82611 -198.3937z" fill-rule="evenodd"/></g></svg>
|
After Width: | Height: | Size: 3.2 KiB |
@ -4,13 +4,13 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Everest Linux - Home</title>
|
<title>Everest Linux - Home</title>
|
||||||
<link type="text/css" rel="stylesheet" href="css/everest.css"/>
|
<link type="text/css" rel="stylesheet" href="css/nord.css"/>
|
||||||
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
|
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<div class="sidenav">
|
<div class="sidenav">
|
||||||
<img src="img/everest-k2.svg" alt="everest-logo">
|
<img src="img/everest-nord.svg" alt="everest-logo">
|
||||||
<a href="index.html">Home</a>
|
<a href="index.html">Home</a>
|
||||||
<a href="about.html">About</a>
|
<a href="about.html">About</a>
|
||||||
<a href="install.html">Install</a>
|
<a href="install.html">Install</a>
|
||||||
|
@ -4,13 +4,13 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Everest Linux - Install</title>
|
<title>Everest Linux - Install</title>
|
||||||
<link type="text/css" rel="stylesheet" href="css/everest.css"/>
|
<link type="text/css" rel="stylesheet" href="css/nord.css"/>
|
||||||
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
|
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<div class="sidenav">
|
<div class="sidenav">
|
||||||
<img src="img/everest-k2.svg" alt="everest-logo">
|
<img src="img/everest-nord.svg" alt="everest-logo">
|
||||||
<a href="index.html">Home</a>
|
<a href="index.html">Home</a>
|
||||||
<a href="about.html">About</a>
|
<a href="about.html">About</a>
|
||||||
<a href="install.html">Install</a>
|
<a href="install.html">Install</a>
|
||||||
|
@ -4,12 +4,12 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Everest Linux - Home</title>
|
<title>Everest Linux - Home</title>
|
||||||
<link type="text/css" rel="stylesheet" href="css/everest.css"/>
|
<link type="text/css" rel="stylesheet" href="css/nord.css"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<div class="sidenav">
|
<div class="sidenav">
|
||||||
<img src="img/everest-k2.svg" alt="everest-logo">
|
<img src="img/everest-nord.svg" alt="everest-logo">
|
||||||
<a href="index.html">Home</a>
|
<a href="index.html">Home</a>
|
||||||
<a href="about.html">About</a>
|
<a href="about.html">About</a>
|
||||||
<a href="install.html">Install</a>
|
<a href="install.html">Install</a>
|
||||||
|
Loading…
Reference in New Issue
Block a user