New features

This commit is contained in:
emerson 2024-08-14 17:25:58 -03:00
parent e9e28e0551
commit 95ea3d3529
9 changed files with 138 additions and 25 deletions

2
.bundle/config Executable file
View File

@ -0,0 +1,2 @@
---
BUNDLE_PATH: "vendor/bundle"

View File

Before

Width:  |  Height:  |  Size: 162 KiB

After

Width:  |  Height:  |  Size: 162 KiB

93
Assets/css/main.css Normal file
View File

@ -0,0 +1,93 @@
:root {
--lilas-nebuloso: rgba(212,198,212,1);
--rosa-neve: rgba(243,239,239,1);
--azul-nevoeiro: rgba(199,210,216,1);
--bege-areia: rgba(226,216,195,1);
--verde-salvia: rgba(138,163,155,1);
/* Informaçoes da paleta de cores */
--primary-color: var(--lilas-nebuloso);
--secondary-color: var(--verde-salvia);
--accent-color: var(--bege-areia);
--background-color: var(--azul-nevoeiro);
--text-color: var( --rosa-neve);
--secondary-text-color: var(--verde-salvia);
/*
--error-color: var(--slate-gray);
--success-color: var(--light-slate-gray);
--warning-color: var(--periwinkle);
--info-color: var(--ivory);
*/
--font-family: 'Roboto', sans-serif;
--heading-margin: 0 0 20px;
}
body{
font-family: var(--font-family);
background: var(--background-color);
margin: 0;
padding: 0;
}
/* */
/* TOP-BAR */
/* */
.top-bar{
width: 100%;
height: 80px;
display: flex;
flex-direction: row;
background-color: var(--secondary-color);
}
.top-bar .branding{
flex-grow: 4;
display: flex;
margin: 5px;
align-items: center;
justify-content: start;
}
.top-bar .branding img{
width: 80px;
height: auto;
}
top-bar .branding h1{
font: var(--font-family);
font-weight: 900;
font-size: 36px;
}
.top-bar .menu{
flex-grow: 2;
display: flex;
margin: 5px;
align-items: center;
justify-content: center;
}
.top-bar .menu-item{
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
}
.menu .menu-item li {
margin-right: 20px;
}
.menu .menu-item li:last-child {
margin-right: 0;
}

View File

@ -28,11 +28,12 @@ url: "" # the base hostname & protocol for your site, e.g. http://example.com
# Build settings # Build settings
plugins: plugins:
- jekyll-feed - jekyll-feed
- jekyll-feed
collections_dir: collections
# pages/ # pages/
header_pages: header_pages:
- pages/index.html
# collections # collections
collections: collections:

15
_includes/topBar.html Normal file
View File

@ -0,0 +1,15 @@
<div class="top-bar">
<div class="branding">
<img src="{{ site.baseurl }}/Assets/Images/Logo/Logo.png"
<h1>Liga das Orquídeas</h1>
</div>
<div class="menu">
<ul class="menu-item">
<li>Menu</li>
<li>Menu</li>
<li>Menu</li>
<li>Menu</li>
</ul>
</div>
</div>

22
_layouts/default.html Normal file
View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"> -->
<link rel="stylesheet" href="{{ site.baseurl }}/Assets/css/main.css">
{% if page.styles %}{{ page.styles }}{% endif %}
<title>
{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}
</title>
</head>
<body>
<div class="main-content">
{% include topBar.html %}
{{content}}
</div>
</body>
</html>

View File

@ -1,18 +0,0 @@
---
layout: page
title: About
permalink: /about/
---
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
You can find the source code for Minima at GitHub:
[jekyll][jekyll-organization] /
[minima](https://github.com/jekyll/minima)
You can find the source code for Jekyll at GitHub:
[jekyll][jekyll-organization] /
[jekyll](https://github.com/jekyll/jekyll)
[jekyll-organization]: https://github.com/jekyll

View File

@ -1,6 +0,0 @@
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: home
---

4
pages/index.html Normal file
View File

@ -0,0 +1,4 @@
---
layout: default
permalink: /
---