Compare commits

..

No commits in common. "21dae2bcf5d36bc5545b67df014fd37f08ed017b" and "383dedf8b60bc7858ca5b2f108a1e79ce4a82cfa" have entirely different histories.

4 changed files with 56 additions and 48 deletions

View File

@ -1,3 +1,9 @@
PATH
remote: ../AliceTheme
specs:
alice (0.0.0)
jekyll (>= 3.5, < 5.0)
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
@ -85,6 +91,7 @@ PLATFORMS
x86_64-linux x86_64-linux
DEPENDENCIES DEPENDENCIES
alice!
jekyll jekyll
jekyll-archives jekyll-archives
jekyll-datapage-generator jekyll-datapage-generator

View File

@ -1,4 +1,4 @@
<div class="SideBar"> <div class="SideBar ">
<div class="top-sidebar"> <div class="top-sidebar">
<img <img

View File

@ -71,12 +71,13 @@ h1, h2, h3, h4, h5, h6 {
justify-content: center; justify-content: center;
padding: 100px 0px; padding: 30px 25px;
} }
.page-sidebar{ .page-sidebar{
width: auto; width: auto;
/* margin: 0 25px; */ flex-grow: 1;
margin: 0 25px;
} }
@ -94,57 +95,57 @@ h1, h2, h3, h4, h5, h6 {
/* ================================================================================================================================== */ /* ================================================================================================================================== */
/* SideBar _include/SideBar.html */ /* SideBar _include/SideBar.html */
.SideBar { .SideBar{
display: flex; display: flex;
flex-direction: row; flex-direction: column;
height: 8vh; height: 100vh;
width: 100vw; position: fixed;
position: absolute;
top: 0;
left: 0;
background-color: var(--background-color);
opacity: 0.7;
align-items: center;
padding: 0 20px;
backdrop-filter: blur(10px); /* Adiciona o efeito de blur */
-webkit-backdrop-filter: blur(10px);
/* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
} }
.SideBar .image { .SideBar .top-sidebar{
width: 100px; /* Ajuste conforme necessário */ flex-grow: 1;
align-items: end;
justify-content: start;
}
.SideBar aside{
flex-grow: 6;
}
.SideBar .button-sidebar{
flex-grow: 1;
}
.SideBar .image{
width: 60%;
height: auto; height: auto;
margin-left: 50px; margin: 10px 0px;
margin-right: 1000px;
} }
.SideBar .menu { .menu{
display: flex; color: var(--text-color);
flex-direction: row; }
gap: 20px;
margin-left: auto; .menu li{
list-style: none; list-style: none;
font-family: var(--font-family); font-family: var(--font-family);
}
.SideBar .menu li { padding: 15px 10px;
display: inline-block;
padding: 10px 15px; }
.menu li:hover{
/* background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(75,144,248,1) 19%, rgba(97,157,246,1) 85%, rgba(241,241,230,0) 100%); */
padding: 15px 15px;
cursor: pointer; cursor: pointer;
} }
.SideBar .menu li:hover { .menu a{
/* background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(75,144,248,1) 19%, rgba(97,157,246,1) 85%, rgba(241,241,230,0) 100%); */
border-radius: 5px;
}
.SideBar .menu a {
color: var(--text-color); color: var(--text-color);
text-decoration: none; text-decoration: none;
} }
.SideBar .menu a:hover { .menu a:hover{
color: var(--secondary-text-color); color: var(--secondary-text-color);
} }
@ -174,7 +175,7 @@ h1, h2, h3, h4, h5, h6 {
.home-content .banner{ .home-content .banner{
height: 500px; height: 500px;
width: 100%; width: 100%;
background: var(--deep-ruby) ; background: url('/assets/images/background.svg') ;
background-size: cover; background-size: cover;
background-position: center; background-position: center;
border-radius: 30px; border-radius: 30px;
@ -211,15 +212,16 @@ h1, h2, h3, h4, h5, h6 {
} }
.lasted .content-box { .lasted .content-box{
width: 100%; width: 100%;
margin: 25px 0;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
gap: 25px;
justify-content: center;
}
margin: 25px 0;
display: flex;
align-items: center;
justify-content: center;
}
.lasted .content-box .box{ .lasted .content-box .box{
height: 500px; height: 500px;

View File

@ -16,12 +16,11 @@ permalink: /
<div class="content-box"> <div class="content-box">
{% assign aulas = site.data.aulas | sort: 'date' | reverse %} {% assign aulas = site.data.aulas | sort: 'date' | reverse %}
{% assign max_aulas = 6 %} {% assign max_aulas = 3 %}
{% assign count = 0 %} {% assign count = 0 %}
{% for aula in aulas %} {% for aula in aulas %}
{% if count < max_aulas %} {% if count < max_aulas %}
{% assign count = count | plus: 1 %}
{% assign nome = aula.name | replace: ".md","" %} {% assign nome = aula.name | replace: ".md","" %}
<div class="box"> <div class="box">
<div class="box-top"> <div class="box-top">