Skip to content

Commit 037942c

Browse files
committed
Cleaner CSS, consistency and overall fixes to make smoother "No Animation" experience
1 parent bc5951a commit 037942c

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

src/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
99
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
1010
<meta name="theme-color" content="#14bae4">
11-
<title>Homepage</title>
11+
<title>Homepage++</title>
1212

1313
<!-- Meta data for public demo -->
1414
<link rel="icon" type="image/x-icon" href="./images/favicon.ico">
@@ -31,13 +31,13 @@ <h1 id="date"></h1>
3131
<!-- Search engine -->
3232
<form id="search-form" role="search" spellcheck="false" novalidate style="display: none;">
3333
<input
34-
id="search-input"
35-
type="text"
36-
name="q"
37-
placeholder="Search the web..."
38-
autocapitalize="off"
39-
autocorrect="off"
40-
autocomplete="off"
34+
id="search-input"
35+
type="text"
36+
name="q"
37+
placeholder="Search the web..."
38+
autocapitalize="off"
39+
autocorrect="off"
40+
autocomplete="off"
4141
/>
4242
</form>
4343
</section>

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "Homepage++",
55
"description": "A website that gives you a clean homepage.",
66
"homepage_url": "https://alexflipnote.dev/homepage_plusplus/",
7-
"version": "2.5.0",
7+
"version": "2.5.1",
88

99
"chrome_url_overrides": {
1010
"newtab": "index.html"

src/options.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Homepage - Settings</title>
4+
<title>Homepage++ - Settings</title>
55
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
66
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
77
<link href="css/index.css" type="text/css" rel="stylesheet">
@@ -11,7 +11,7 @@
1111
<div class="text-center container">
1212
<div class="header-container">
1313
<img src="images/logo.png" alt="Homepage Logo">
14-
<h1>Homepage settings <i>(v<span id="version"></span>)</i></h1>
14+
<h1>Homepage++ settings <i>(v<span id="version"></span>)</i></h1>
1515
</div>
1616

1717
<div class="box-container">

src/privacy.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
66
<meta name="theme-color" content="#2196F3">
7-
<title>Homepage</title>
7+
<title>Homepage++ - Privacy Policy</title>
88

99
<meta content="https://alexflipnote.dev/homepage_plusplus/images/logo.png" property="og:image" />
1010
<link rel="icon" type="image/x-icon" href="images/favicon.ico">

src/scss/components/background.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
top: 0;
2020
transition: opacity .5s ease-out;
2121
width: 100%;
22-
z-index: -1;
2322
}
2423
}
2524

src/scss/components/bookmark.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
margin-bottom: .25rem;
5555
position: relative;
5656
width: 2rem;
57-
z-index: 999;
5857
}
5958

6059
span {

src/scss/components/demo.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
flex-direction: column;
1818
padding: 1rem 3rem 1rem 2rem;
1919
position: absolute;
20-
z-index: 100;
2120
transform: translateX(-27rem);
2221
transition: transform .3s ease-in-out, padding .3s ease-in-out;
2322

src/scss/components/global.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
html, body {
2121
height: 100%;
2222
margin: 0 auto;
23+
background-color: var(--highlight);
2324
}
2425

2526
details {
@@ -255,6 +256,7 @@ body {
255256

256257
.no-animations {
257258
.time-container,
259+
#time, #date,
258260
#search-form,
259261
#weather-container,
260262
#bookmarks,

src/scss/components/timestamp.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
flex-direction: column;
66
justify-content: center;
77
text-align: center;
8+
z-index: 9999;
89

910
#time { letter-spacing: .25rem; }
1011

0 commit comments

Comments
 (0)