649 lines
12 KiB
SCSS
649 lines
12 KiB
SCSS
$background: antiquewhite;
|
|
$background-page: #FEFEFA;
|
|
$color: #2f4f4f;
|
|
$color-page: #666362;
|
|
$background_div: blueviolet;
|
|
$color_div: #f2eb8c;
|
|
$background-secondary: #635283;
|
|
$color-secondary: #8eea6d;
|
|
$accent-secondary: #fde68f;
|
|
$primary-secondary: #590e11;
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
div.search-overlay {
|
|
overflow-y: scroll;
|
|
display: none;
|
|
position: fixed;
|
|
height: 100%;
|
|
width: 100%;
|
|
background: white;
|
|
z-index: 3;
|
|
top: 0;
|
|
flex-direction: column;
|
|
&.active {
|
|
display: flex;
|
|
}
|
|
div.search-results {
|
|
margin: 7px;
|
|
}
|
|
div.bounding-search-bar {
|
|
margin: 7px;
|
|
width: calc(100% - 20px);
|
|
border-radius: 10px;
|
|
height: 60px;
|
|
display: flex;
|
|
div.search {
|
|
width: calc(100% - 60px);
|
|
height: 60px;
|
|
margin-left: 0px;
|
|
margin-right: 0px;
|
|
}
|
|
a.exit-search {
|
|
width: 60px;
|
|
background: whitesmoke;
|
|
height: 60px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
img {
|
|
width: 60%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
div.search {
|
|
background: whitesmoke;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
display: flex;
|
|
div.search-icon {
|
|
height: calc(100% - 28px);
|
|
display: flex;
|
|
background: aliceblue;
|
|
align-items: center;
|
|
margin: 7px;
|
|
padding: 7px;
|
|
border-radius: 10px;
|
|
border: solid gray 1px;
|
|
aspect-ratio: 1/1;
|
|
img {
|
|
height: 80%;
|
|
}
|
|
}
|
|
div.fake-text-box {
|
|
width: calc(100% - 60px);
|
|
display: flex;
|
|
align-items: center;
|
|
input[type="text"] {
|
|
font-size: 30px;
|
|
width: 100%;
|
|
height: 70%;
|
|
background: none;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|
|
p, h1, h2, h3, h4, a {
|
|
font-family: 'arial';
|
|
}
|
|
|
|
*.android {
|
|
display: none;
|
|
}
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
min-height: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
div.site-wrapper {
|
|
display: table;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
/* For at least Firefox */
|
|
min-height: 100%;
|
|
color: $color;
|
|
background: $background;
|
|
filter: blur(10px);
|
|
background-size: cover;
|
|
overflow: hidden;
|
|
}
|
|
|
|
div.carousel {
|
|
position: fixed;
|
|
top: 80%;
|
|
height: calc(20% - 6px);
|
|
width: calc(100% - 6px);
|
|
border: solid 3px black;
|
|
|
|
a {
|
|
font-size: 13px;
|
|
background: $color_div;
|
|
color: $background_div;
|
|
display: flex;
|
|
text-align: center;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 100%;
|
|
text-decoration: none;
|
|
|
|
&:hover, &:focus {
|
|
background: $background_div;
|
|
color: $color_div;
|
|
}
|
|
}
|
|
|
|
div.promoted-tag, h3 {
|
|
margin: 0;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
img {
|
|
margin: 10px;
|
|
height: calc(100% - 20px);
|
|
border: solid 1px black;
|
|
background: white;
|
|
}
|
|
}
|
|
|
|
div.none {
|
|
display: none;
|
|
}
|
|
|
|
div.complete-container {
|
|
position: fixed;
|
|
z-index: 2;
|
|
color: $color-page;
|
|
top: 0%;
|
|
left: 0%;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
div.page-contents.no-carousel {
|
|
height: calc(100% - 60px);
|
|
}
|
|
|
|
nav {
|
|
overflow: auto;
|
|
display: block;
|
|
font-size: 25px;
|
|
margin: 0px;
|
|
|
|
a.go-to-index img {}
|
|
|
|
a {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
height: 100%;
|
|
text-decoration: none;
|
|
color: $color_div;
|
|
margin: 0;
|
|
|
|
background: $background_div;
|
|
&:hover, &:focus {
|
|
background: $color_div;
|
|
color: $background_div;
|
|
}
|
|
|
|
&.selected {
|
|
background: $background-page;
|
|
color: $background_div;
|
|
border-right: 1px solid $background_div;
|
|
}
|
|
}
|
|
}
|
|
|
|
nav.desktop {
|
|
display: none;
|
|
|
|
a {
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
nav.mobile-foldable {
|
|
display: none;
|
|
background: $background_div;
|
|
color: $color_div;
|
|
|
|
a {
|
|
//background: $color_div;
|
|
//color: $background_div;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
nav.mobile-foldable.show {
|
|
display: block;
|
|
}
|
|
|
|
nav.mobile-shortcuts > a {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
a.menu-expand {
|
|
padding-bottom: 9px;
|
|
|
|
.open-menu-icon-hover {
|
|
display: none;
|
|
}
|
|
|
|
&:hover, &:focus {
|
|
.open-menu-icon-hover {
|
|
display: block;
|
|
}
|
|
|
|
.open-menu-icon {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
nav > a.menu-expand > img {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
|
|
nav > a > img.index-image-menu {
|
|
vertical-align: middle;
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
nav > a > img.index-image-menu, div.burguillos-logo-container > img {
|
|
transition-property: transform;
|
|
transition-duration: 2s;
|
|
transition-delay: 2s;
|
|
}
|
|
|
|
nav > a:hover > img.index-image-menu,
|
|
div.burguillos-logo-container.active > img {
|
|
transform: rotate(-1.5707963268rad);
|
|
}
|
|
|
|
nav.mobile-shortcuts {
|
|
position: fixed;
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
background: $background_div;
|
|
height: 60px;
|
|
top: 0%;
|
|
|
|
a {
|
|
height: 100%;
|
|
width: (100% / 6);
|
|
padding-left: 0;
|
|
padding-top: 0;
|
|
padding-right: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
div.search {
|
|
width: calc(100% * 4 / 6 - 20px);
|
|
height: 80%;
|
|
border-radius: 10px;
|
|
}
|
|
}
|
|
|
|
div.page-contents {
|
|
background: $background-page;
|
|
position: fixed;
|
|
top: 60px;
|
|
height: calc(80% - 60px);
|
|
width: 100%;
|
|
overflow-y: scroll;
|
|
|
|
div.child-categories-mobile a {
|
|
padding-left: 2.5rem;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
display: block;
|
|
}
|
|
|
|
table {
|
|
color: $background_div;
|
|
background: $color_div;
|
|
border: 3px solid $background_div;
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
|
|
td, th {
|
|
font-size: 12px;
|
|
}
|
|
|
|
table-layout: fixed;
|
|
}
|
|
|
|
th, td {
|
|
border: 3px solid $background_div;
|
|
border-collapse: collapse;
|
|
padding-right: 10px;
|
|
margin: 0;
|
|
}
|
|
|
|
div.description {
|
|
input {
|
|
display: block;
|
|
}
|
|
|
|
word-wrap: break-word;
|
|
|
|
div.suscribirse-rss {
|
|
img {
|
|
max-height: 300px;
|
|
}
|
|
}
|
|
|
|
padding: 1%;
|
|
margin-left: 3%;
|
|
margin-right: 3%;
|
|
margin-bottom: 1%;
|
|
|
|
div.articles {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
|
|
div.image-container {
|
|
margin-left: 2.5%;
|
|
margin-top: 10px;
|
|
height: 95%;
|
|
width: 95%;
|
|
display: flex;
|
|
min-height: 130px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
img {
|
|
background: white;
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
border: solid 1px black;
|
|
}
|
|
}
|
|
|
|
a {
|
|
min-height: 90%;
|
|
width: 100%;
|
|
display: block;
|
|
text-decoration: none;
|
|
text-overflow: ellipsis;
|
|
margin-bottom: 30px;
|
|
|
|
&:focus, &:hover {
|
|
//outline: red solid 3px;
|
|
article {
|
|
background: $background_div;
|
|
color: $color_div;
|
|
}
|
|
}
|
|
|
|
article {
|
|
word-wrap: break-word;
|
|
width: 90%;
|
|
height: 90%;
|
|
|
|
p, h4, h3, h2 {
|
|
margin: 0px;
|
|
}
|
|
|
|
p {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
div.article-up-part {
|
|
height: 12em;
|
|
}
|
|
|
|
div.article-down-part {
|
|
margin-top: 2em;
|
|
height: 9em;
|
|
display: flex;
|
|
align-items: end;
|
|
padding-bottom: 2em;
|
|
}
|
|
|
|
padding: 5%;
|
|
padding-top: 1%;
|
|
background: $color_div;
|
|
color: $background_div;
|
|
box-shadow: 8px 8px 1px 0px #8ddfd6;
|
|
border: 3px solid black;
|
|
|
|
&:hover {
|
|
background: $background_div;
|
|
color: $color_div;
|
|
}
|
|
|
|
p.date {
|
|
text-align: right;
|
|
}
|
|
|
|
p.author {
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
a.suscribe-category-rss {
|
|
background: $background_div;
|
|
width: 40px;
|
|
height: 40px;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
display: inline-block;
|
|
|
|
img {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
}
|
|
}
|
|
|
|
div.open-browser-container {
|
|
display: flex;
|
|
justify-content: start;
|
|
width: 100%;
|
|
margin-left: 0px;
|
|
margin-right: 0px;
|
|
padding-left: 0px;
|
|
padding-right: 0px;
|
|
background: $color_div;
|
|
color: $background_div;
|
|
|
|
a.open-in-browser {
|
|
text-decoration: none;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: calc(100% - 20px);
|
|
align-items: center;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
|
|
img {
|
|
display: block;
|
|
height: 2rem;
|
|
width: 2rem;
|
|
margin-right: 0px;
|
|
margin-left: 0px;
|
|
}
|
|
|
|
span {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
div.open-browser-container.android {
|
|
display: none;
|
|
}
|
|
|
|
div.easter-egg {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
div.burguillos-logo-container.active {
|
|
border: solid 1px black;
|
|
border-radius: 50%;
|
|
filter: invert(1);
|
|
}
|
|
|
|
div.burguillos-logo-container {
|
|
padding: 40px;
|
|
width: 120px;
|
|
}
|
|
|
|
div.burguillos-logo-container.active img {}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
div.footer {
|
|
p, h1, h2, h3, h4, a {
|
|
font-size: initial;
|
|
}
|
|
|
|
a.suscribe-category-rss {
|
|
padding: 7px;
|
|
}
|
|
|
|
a.suscribe-category-rss, a.suscribe-category-rss > img {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (min-width: 450px) {
|
|
body {
|
|
div.page-contents {
|
|
table {
|
|
th, td {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (min-width: 694px) {
|
|
body {
|
|
div.carousel {
|
|
a {
|
|
font-size: 20px;
|
|
}
|
|
h3 {
|
|
font-size: 25px;
|
|
}
|
|
}
|
|
div.page-contents {
|
|
div.description {
|
|
div.articles {
|
|
a {
|
|
&:nth-child(2n+1) {
|
|
margin-left: 0%;
|
|
}
|
|
|
|
width: 45%;
|
|
margin-left: 5%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1100px) {
|
|
body {
|
|
nav.mobile-shortcuts {
|
|
display: none;
|
|
}
|
|
|
|
div.page-contents {
|
|
nav.mobile-foldable, nav.mobile-foldable.show {
|
|
display: none;
|
|
}
|
|
|
|
div.description {
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
nav.desktop {
|
|
display: block;
|
|
height: auto;
|
|
height: 60px;
|
|
|
|
a {
|
|
display: table-cell;
|
|
height: 60px;
|
|
|
|
img.index-image-menu {
|
|
height: 40px;
|
|
width: 40px;
|
|
}
|
|
}
|
|
}
|
|
|
|
top: 0%;
|
|
left: 5%;
|
|
height: 80%;
|
|
width: 90%;
|
|
border: solid 1px black;
|
|
}
|
|
|
|
div.page-contents.no-carousel {
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1333px) {
|
|
body {
|
|
div.page-contents {
|
|
div.description {
|
|
div.articles {
|
|
a {
|
|
&:nth-child(2n+1) {
|
|
margin-left: 3%;
|
|
}
|
|
|
|
&:nth-child(3n+1) {
|
|
margin-left: 0%;
|
|
}
|
|
|
|
width: 30%;
|
|
margin-left: 3%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 200px) {
|
|
body {
|
|
font-size: 20px;
|
|
}
|
|
}
|