New features
This commit is contained in:
parent
e9e28e0551
commit
95ea3d3529
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
BUNDLE_PATH: "vendor/bundle"
|
Before Width: | Height: | Size: 162 KiB After Width: | Height: | Size: 162 KiB |
|
@ -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;
|
||||
}
|
|
@ -28,11 +28,12 @@ url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
|||
# Build settings
|
||||
plugins:
|
||||
- jekyll-feed
|
||||
- jekyll-feed
|
||||
|
||||
collections_dir: collections
|
||||
|
||||
# pages/
|
||||
header_pages:
|
||||
- pages/index.html
|
||||
|
||||
# collections
|
||||
collections:
|
||||
|
|
|
@ -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>
|
|
@ -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>
|
|
@ -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
|
|
@ -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
|
||||
---
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
layout: default
|
||||
permalink: /
|
||||
---
|
Loading…
Reference in New Issue