mirror of
https://codeberg.org/fediverse/fediparty.git
synced 2024-11-22 00:21:28 +00:00
Fix scroll, fix favicon, closes #23
This commit is contained in:
parent
b23e6f049b
commit
d345981044
|
@ -23,14 +23,14 @@
|
|||
<link rel="apple-touch-icon" sizes="120x120" href="/img/touch/apple-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/img/touch/apple-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/img/touch/apple-icon-180x180.png">
|
||||
<link rel="mask-icon" href="ahoyhexo.svg" color="#ffffff">
|
||||
|
||||
<meta name="msapplication-tap-highlight" content="no" />
|
||||
<meta name="msapplication-TileImage" content="/img/touch/ms-touch-icon-144x144-precomposed.png">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<meta name="theme-color" content="#f4f4f4">
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<meta property="og:title" content="Fediverse">
|
||||
<meta property="og:description" content="<%= config.description %>">
|
||||
<meta property="og:image" content="<%= config.url %>/<% if (page.path.match(/post/) && page.banner) { %><%=page.path%><%=page.banner%><% } else { %><%=config.ogImage%><% } %>" />
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
|
||||
<%
|
||||
let contType = '';
|
||||
let indexBody = '';
|
||||
let ball = false;
|
||||
let misc;
|
||||
if (is_root()) {
|
||||
contType = 'main__container';
|
||||
indexBody = 'main';
|
||||
}
|
||||
if (page.layout == 'crystalball') {
|
||||
ball = true;
|
||||
|
@ -18,7 +20,7 @@
|
|||
<html lang="en">
|
||||
|
||||
<%- partial('_partial/head') %>
|
||||
<body>
|
||||
<body class="<%= indexBody %>">
|
||||
<main class="container-wrapper">
|
||||
<!--[if lt IE 11]>
|
||||
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please, upgrade</a>.</p>
|
||||
|
@ -29,7 +31,6 @@
|
|||
<noscript><small class="no-js">You disabled Javascript. Some things won't work.</small></noscript>
|
||||
<%- body %>
|
||||
</div>
|
||||
<h1><%=page.title%></h1>
|
||||
</main>
|
||||
<!-- temporary https redirect hack -->
|
||||
<script>
|
||||
|
|
|
@ -232,6 +232,10 @@ $taglist: (diaspora, $diaspora),
|
|||
padding-top: 7em;
|
||||
}
|
||||
|
||||
.post__preview:not(.wanted):not(.featured) {
|
||||
height: 230px;
|
||||
}
|
||||
|
||||
.page-number {
|
||||
margin: 0 .9em;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
|
||||
.main__container {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
padding-top: 2em;
|
||||
padding-bottom: 1.5em;
|
||||
background: $black url(/img/index-bg.jpg) center center no-repeat;
|
||||
|
|
|
@ -14,13 +14,13 @@
|
|||
html,
|
||||
body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
html {
|
||||
-webkit-font-smoothing: subpixel-antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-text-size-adjust: 100%;
|
||||
height: 100%;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
|
@ -34,6 +34,10 @@ body {
|
|||
text-rendering: optimizeLegibility;
|
||||
}
|
||||
|
||||
body.main {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
*::-moz-selection {
|
||||
color: $black;
|
||||
background: $golden;
|
||||
|
@ -152,13 +156,9 @@ dfn {
|
|||
.container-wrapper {
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.container {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
background-color: $white;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue