přidána ikonka k návratu na domovskou stránku

This commit is contained in:
archos 2024-08-24 21:01:39 +02:00
parent 0dd3ec0899
commit 4f3584e9d3
4 changed files with 40 additions and 3 deletions

View File

@ -25,6 +25,10 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
<meta name="Co je Mxchat" content="Co je Mxchat." /> <meta name="Co je Mxchat" content="Co je Mxchat." />
<title>Mxchat Cz</title> <title>Mxchat Cz</title>
<link rel="stylesheet" href="../../style/style.css" /> <link rel="stylesheet" href="../../style/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link <link
rel="stylesheet" rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css"
@ -35,6 +39,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
<body> <body>
<header class="page-header" role="banner"> <header class="page-header" role="banner">
<h1 class="project-name">Co je Mxchat</h1> <h1 class="project-name">Co je Mxchat</h1>
<a href="/index.html" class="home-icon" title="Domů">
<i class="fas fa-home"></i>
</header> </header>
<div class="main-content"> <div class="main-content">
<p>Mxcahat Cz je platforma postavená na protokolu Matrix, která poskytuje bezpečnou a decentralizovanou komunikaci.</p> <p>Mxcahat Cz je platforma postavená na protokolu Matrix, která poskytuje bezpečnou a decentralizovanou komunikaci.</p>

View File

@ -24,6 +24,10 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kontakty</title> <title>Kontakty</title>
<link <link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link
rel="stylesheet" rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css"
integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY=" integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY="
@ -33,15 +37,17 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
<link <link
rel="icon" rel="icon"
type="image/x-icon" type="image/x-icon"
href="../../res/site/icons/favicon.ico" href="../../res/site/icons/favicon.icon"
/> />
</head> </head>
<body> <body>
<header class="page-header" role="banner"> <header class="page-header" role="banner">
<h1 class="project-name">Kontakty</h1> <h1 class="project-name">Kontakty</h1>
<a href="/index.html" class="home-icon" title="Domů">
<h2>Pro jakékoli dotazy nebo podporu nás můžete kontaktovat prostřednictvím následujících kanálů</h2> <i class="fas fa-home"></i>
</a>
<h2>Pro jakékoli dotazy nebo podporu nás můžete kontaktovat prostřednictvím následujících kanálů</h2>
</header> </header>
<div class="spacer"></div> <div class="spacer"></div>
<div class="main-content"> <div class="main-content">

View File

@ -25,10 +25,17 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
<title>Novinky na Mxchatu</title> <title>Novinky na Mxchatu</title>
<link rel="stylesheet" href="../../style/style.css" /> <link rel="stylesheet" href="../../style/style.css" />
<link rel="icon" type="image/x-icon" href="../../res/site/icons/favicon.ico" /> <link rel="icon" type="image/x-icon" href="../../res/site/icons/favicon.ico" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head> </head>
<body> <body>
<header class="page-header" role="banner"> <header class="page-header" role="banner">
<h1 class="project-name">Novinky na Mxchatu</h1> <h1 class="project-name">Novinky na Mxchatu</h1>
<a href="/index.html" class="home-icon" title="Domů">
<i class="fas fa-home"></i>
</a>
</header> </header>
<div class="main-content"> <div class="main-content">
<!-- První novinka --> <!-- První novinka -->

View File

@ -805,3 +805,21 @@ body {
.spacer { .spacer {
height: 20px; /* Můžeš upravit hodnotu podle potřeby */ height: 20px; /* Můžeš upravit hodnotu podle potřeby */
} }
.page-header {
position: relative;
padding: 20px;
text-align: center;
}
.home-link {
position: absolute;
top: 20px;
right: 20px;
font-size: 24px;
color: #000; /* Barva ikony */
text-decoration: none;
}
.home-link:hover {
color: #800; /* Barva ikony při hoveru */
}