Image Background

This commit is contained in:
Rod 2020-09-11 19:23:13 -05:00
parent 71bc5ef105
commit acc5c74b40
6 changed files with 262 additions and 183 deletions

View File

@ -13,6 +13,8 @@
- [Home Page](#as-home-page)
- [New Tab](#as-new-tab)
- [Customization](#customization)
- [Home Page](#as-home-page)
- [New Tab](#as-new-tab)
#### Features:
@ -49,6 +51,16 @@ In the CSS code you can always change the variables for both themes (Dark and Li
#### Weather Widget
For setting up the Weather widget you're going to need an API Key in: `https://openweathermap.org/`. Once you have your Key you'll need to set yourlatitude and longitude, you can use: `https://www.latlong.net/` to get them. Once you have the data, you'll need to set them in the `weather.js` in the **js** folder.
For setting up the Weather widget you're going to need an API Key in: `https://openweathermap.org/`. Once you have your Key you'll need to set yourlatitude and longitude, you can use: `https://www.latlong.net/` to get them. Once you have the data, you'll need to set them in the `weather.js` in the **js** folder. The code is
> If you don't like the idea of having your API Key public, you can make the repo into a private one. You can still use the Github Pages service.
#### Image Background
You can set your own background image with the variable `--imgbg` and set the route to the image you want It's disable by default. If you uncomment the variable, it has by default this image:
<p align="center">
<img src="https://github.com/MiguelRAvila/Bento/blob/master/assets/previewbg.png">
</p>
It has a black filter by default in `--imgcol`, and it'ts value is: `rgba(255, 255, 255, 0.7)` and `rgba(0, 0, 0, 0.7)` for the dark theme. You can change them and the opacity for a better experience with your image.

BIN
assets/previewbg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 538 KiB

View File

@ -1,235 +1,295 @@
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
:root {
--fsg: 150px;
--fsm: 85px;
--fss: 30px;
--fses: 18px;
--accent: #186efdaa;
--bg: #f5f5f5;
--sbg: #e4e6e6;
--fg: #3a3a3a; }
@media only screen and (max-width: 68.75em) {
--fsg: 150px;
--fsm: 85px;
--fss: 30px;
--fses: 18px;
--accent: #186efdaa;
--bg: #f5f5f5;
--sbg: #e4e6e6;
--fg: #3a3a3a;
--imgbg: url(/img/wal.jpg);
--imgcol: linear-gradient(
rgba(255, 255, 255, 0.7),
rgba(255, 255, 255, 0.7)
);
}
@media only screen and (max-width: 68.75em) {
:root {
--fsg: 100px;
--fsm: 65px;
--fss: 20px; } }
--fsg: 100px;
--fsm: 65px;
--fss: 20px;
}
}
.darktheme {
--accent: #186efd60;
--bg: #1e1f21;
--sbg: #2c2d31;
--fg: #d8dee9; }
--accent: #186efd60;
--bg: #1e1f21;
--sbg: #2c2d31;
--fg: #d8dee9;
--imgcol: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
font-size: 13.5px;
transition: 0.2s ease-in-out; }
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
font-size: 13.5px;
transition: 0.2s ease-in-out;
}
body {
width: 100vw;
height: 100vh;
background-color: var(--bg);
display: flex;
align-items: center;
justify-content: center; }
#themeButton {
position: absolute;
margin: 2em 2em 0 0;
right: 0;
top: 0;
color: var(--fg);
border: none;
border-radius: 5px;
padding: 10px;
cursor: pointer;
background-color: #00000000;
-webkit-appearance: none;
-moz-appearance: none; }
.bicon {
width: 26px;
height: 26px; }
.container {
width: 150vh;
height: 85vh;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(4, 1fr);
grid-gap: 30px;
padding: 20px; }
@media only screen and (max-width: 68.75em) {
.container {
grid-gap: 20px;
padding: 40px; } }
.container > * {
width: 100%; }
.card {
box-shadow: 0 5px 7px rgba(0, 0, 0, 0.35);
border-radius: 5px;
background-color: var(--sbg); }
.card:hover {
transform: translateY(-0.2rem);
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.35); }
.fblock {
grid-row: 1 / span 2;
grid-column: 1 / span 2;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center; }
@media only screen and (max-width: 68.75em) {
.fblock {
grid-row: 1 / span 2;
grid-column: 1 / span 4; } }
.sblock {
grid-column: 3 / span 2;
grid-row: 1 / span 2;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center; }
.sblock__date {
width: 100vw;
height: 100vh;
background-color: var(--bg);
background-image: var(--imgcol), var(--imgbg);
display: flex;
align-items: center;
justify-content: center;
margin-top: 30px; }
.sblock__weather {
}
#themeButton {
position: absolute;
margin: 2em 2em 0 0;
right: 0;
top: 0;
color: var(--fg);
border: none;
border-radius: 5px;
padding: 10px;
cursor: pointer;
background-color: #00000000;
-webkit-appearance: none;
-moz-appearance: none;
}
.bicon {
width: 26px;
height: 26px;
}
.container {
width: 150vh;
height: 85vh;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(4, 1fr);
grid-gap: 30px;
padding: 20px;
}
@media only screen and (max-width: 68.75em) {
.container {
grid-gap: 20px;
padding: 40px;
}
}
.container > * {
width: 100%;
}
.card {
box-shadow: 0 5px 7px rgba(0, 0, 0, 0.35);
border-radius: 5px;
background-color: var(--sbg);
}
.card:hover {
transform: translateY(-0.2rem);
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.35);
}
.fblock {
grid-row: 1 / span 2;
grid-column: 1 / span 2;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
@media only screen and (max-width: 68.75em) {
.fblock {
grid-row: 1 / span 2;
grid-column: 1 / span 4;
}
}
.sblock {
grid-column: 3 / span 2;
grid-row: 1 / span 2;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.sblock__date {
display: flex;
align-items: center;
justify-content: center; }
@media only screen and (max-width: 68.75em) {
justify-content: center;
margin-top: 30px;
}
.sblock__weather {
display: flex;
align-items: center;
justify-content: center;
}
@media only screen and (max-width: 68.75em) {
.sblock {
display: none; } }
display: none;
}
}
.clock {
display: flex;
align-items: center;
justify-content: center; }
display: flex;
align-items: center;
justify-content: center;
}
#hour,
#separator,
#minutes {
font-size: var(--fsg);
font-weight: bolder;
color: var(--fg); }
font-size: var(--fsg);
font-weight: bolder;
color: var(--fg);
}
#month,
#day {
font-size: var(--fsm);
font-weight: bold;
color: var(--fg); }
font-size: var(--fsm);
font-weight: bold;
color: var(--fg);
}
#day {
margin-left: 20px; }
margin-left: 20px;
}
#greetings {
font-size: var(--fses);
color: var(--fg); }
@media only screen and (max-width: 68.75em) {
font-size: var(--fses);
color: var(--fg);
}
@media only screen and (max-width: 68.75em) {
#greetings {
font-size: var(--fss); } }
font-size: var(--fss);
}
}
.weather-icon img {
width: 80px;
height: 80px; }
width: 80px;
height: 80px;
}
.temperature-value p {
font-size: var(--fss);
font-weight: bolder;
margin-left: 15px;
color: var(--fg); }
font-size: var(--fss);
font-weight: bolder;
margin-left: 15px;
color: var(--fg);
}
.temperature-description p {
font-size: var(--fss);
margin-left: 15px;
color: var(--fg); }
font-size: var(--fss);
margin-left: 15px;
color: var(--fg);
}
.qlink {
grid-row: 3 / span 2;
grid-column: 1 / span 2;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-gap: 30px;
padding: 30px; }
@media only screen and (max-width: 68.75em) {
grid-row: 3 / span 2;
grid-column: 1 / span 2;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-gap: 30px;
padding: 30px;
}
@media only screen and (max-width: 68.75em) {
.qlink {
grid-row: 3 / span 2;
grid-column: 1 / span 4;
grid-gap: 40px;
padding: 20px; } }
.qlink__icon {
grid-row: 3 / span 2;
grid-column: 1 / span 4;
grid-gap: 40px;
padding: 20px;
}
}
.qlink__icon {
width: 26px;
height: 26px;
color: var(--fg); }
.qlink__link {
color: var(--fg);
}
.qlink__link {
display: flex;
justify-content: center;
align-items: center;
background-color: var(--sbg);
width: 100%;
box-shadow: 0 5px 7px rgba(0, 0, 0, 0.35);
border-radius: 5px; }
.qlink__link-1 {
grid-row: 1;
grid-column: 1; }
.qlink__link-2 {
grid-row: 1;
grid-column: 2; }
.qlink__link-3 {
grid-row: 2;
grid-column: 1; }
.qlink__link-4 {
grid-row: 2;
grid-column: 2; }
.qlink__link-5 {
grid-row: 1;
grid-column: 3; }
.qlink__link-6 {
grid-row: 2;
grid-column: 3; }
.qlink__link:hover {
background-color: var(--accent);
transform: translateY(-0.2rem);
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.35); }
.qlink__link:hover svg {
stroke: var(--fg); }
border-radius: 5px;
}
.qlink__link-1 {
grid-row: 1;
grid-column: 1;
}
.qlink__link-2 {
grid-row: 1;
grid-column: 2;
}
.qlink__link-3 {
grid-row: 2;
grid-column: 1;
}
.qlink__link-4 {
grid-row: 2;
grid-column: 2;
}
.qlink__link-5 {
grid-row: 1;
grid-column: 3;
}
.qlink__link-6 {
grid-row: 2;
grid-column: 3;
}
.qlink__link:hover {
background-color: var(--accent);
transform: translateY(-0.2rem);
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.35);
}
.qlink__link:hover svg {
stroke: var(--fg);
}
.qlist {
display: flex;
align-items: center;
flex-direction: column; }
@media only screen and (max-width: 68.75em) {
display: flex;
align-items: center;
flex-direction: column;
}
@media only screen and (max-width: 68.75em) {
.qlist {
display: none; } }
.qlist__1 {
display: none;
}
}
.qlist__1 {
grid-column: 3;
grid-row: 3 / span 2; }
.qlist__2 {
grid-row: 3 / span 2;
}
.qlist__2 {
grid-column: 4;
grid-row: 3 / span 2; }
.qlist__head {
grid-row: 3 / span 2;
}
.qlist__head {
margin-top: 30px;
margin-bottom: 20px;
width: 30px;
color: var(--fg);
height: 30px; }
.qlist__link {
height: 30px;
}
.qlist__link {
text-decoration: none;
font-size: var(--fses);
color: var(--fg);
margin-top: 1px;
padding: 6px 12px;
border-radius: 5px;
font-weight: bold; }
.qlist__link:hover {
background-color: var(--accent);
color: var(--fg); }
font-weight: bold;
}
.qlist__link:hover {
background-color: var(--accent);
color: var(--fg);
}

BIN
img/wal.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 612 KiB

View File

@ -10,7 +10,7 @@
<button id="themeButton"><i id="bicon" data-feather="moon"></i></button>
<div class="container">
<div class="fblock">
<div class="clock ">
<div class="clock">
<div id="hour" class=""></div>
<div id="separator" class=""></div>
<div id="minutes" class=""></div>
@ -38,9 +38,9 @@
<a
href="https://github.com/"
target="blank"
class="qlink__link qlink__link-1 "
class="qlink__link qlink__link-1"
>
<i class="qlink__icon " data-feather="github"></i>
<i class="qlink__icon" data-feather="github"></i>
</a>
<a
target="blank"

View File

@ -21,6 +21,11 @@ $bp-smallest: 31.25em;
--sbg: #e4e6e6;
--fg: #3a3a3a;
--imgbg: url(/img/wal.jpg);
--imgcol: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
@media only screen and (max-width: $bp-large) {
--fsg: 100px;
--fsm: 65px;
@ -28,15 +33,14 @@ $bp-smallest: 31.25em;
}
}
.darktheme {
--accent: #186efd60;
--bg: #1e1f21;
--sbg: #2c2d31;
--fg: #d8dee9;
--imgcol: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}
* {
@ -53,6 +57,9 @@ body {
width: 100vw;
height: 100vh;
background-color: var(--bg);
background-image: var(--imgcol), var(--imgbg);
display: flex;
align-items: center;
justify-content: center;
@ -271,7 +278,7 @@ body {
box-shadow: 0 10px 10px rgba(#000000, 0.35);
& svg {
stroke: var(--fg);;
stroke: var(--fg);
}
}
}