From db83233cf70178343b7b04ff52c9b9d1397f194c Mon Sep 17 00:00:00 2001 From: Francisco Pessano Date: Sun, 18 Jul 2021 00:15:05 -0300 Subject: [PATCH] Listo el CSS del footer --- control-files/00_ids_done.txt | 2 +- control-files/00_news_done.txt | 2 +- news_logic.php | 2 +- style.css | 36 ++++++++++++++++++++++++++++++++++ 4 files changed, 39 insertions(+), 3 deletions(-) diff --git a/control-files/00_ids_done.txt b/control-files/00_ids_done.txt index da2d398..3f10ffe 100755 --- a/control-files/00_ids_done.txt +++ b/control-files/00_ids_done.txt @@ -1 +1 @@ -14 \ No newline at end of file +15 \ No newline at end of file diff --git a/control-files/00_news_done.txt b/control-files/00_news_done.txt index fb8efeb..5e96b2b 100755 --- a/control-files/00_news_done.txt +++ b/control-files/00_news_done.txt @@ -1 +1 @@ - ./news/1.html ./news/2.html ./news/3.html ./news/4.html ./news/5.html ./news/6.html ./news/7.html ./news/8.html ./news/9.html ./news/10.html ./news/11.html ./news/12.html ./news/13.html ./news/14.html \ No newline at end of file + ./news/1.html ./news/2.html ./news/3.html ./news/4.html ./news/5.html ./news/6.html ./news/7.html ./news/8.html ./news/9.html ./news/10.html ./news/11.html ./news/12.html ./news/13.html ./news/14.html ./news/15.html \ No newline at end of file diff --git a/news_logic.php b/news_logic.php index 287d5fb..96a7aec 100755 --- a/news_logic.php +++ b/news_logic.php @@ -116,7 +116,7 @@ function create_entry_in_DB($news_unique, $page, $author, $mySQLconnectRoute) { break; case $page === 'Infobae': - $title = get_string_between($content, '', '- Infobae'); + $title = get_string_between($content, '', '- Infobae'); $pre_icon = get_string_between($content, '
', '
'); $icon = get_string_between($pre_icon, '992w,', ' 1200w" '); $inner_HTML = get_string_between($content, '
', '
') . ''; diff --git a/style.css b/style.css index 9554949..2361631 100755 --- a/style.css +++ b/style.css @@ -122,4 +122,40 @@ header { right: 0; margin-right: 1vw; color: #bbbbbb +} + +.pagination { + display: flex; + justify-content: space-around; + + margin-top: 2vh; + margin-bottom: 2vh; + margin-left: 2vw; + margin-right: 2vw; + +} + +.pagination a { + margin-left: 1vw; + margin-right: 1vw; + + display: flex; + justify-content: center; + align-items: center; + + height: 50px; + width: 50px; + border-radius: 5px; + + background-color: #e7e7e7; + + text-decoration: none; + color: #000000; +} + +.pagination .page-disabled { + background-color: #5e5e5e; + + + } \ No newline at end of file