From d64d425c9855c6a1709b72ebecdd94e99c7144d2 Mon Sep 17 00:00:00 2001 From: Daniel Cortes Date: Wed, 3 Jun 2020 23:19:29 -0400 Subject: [PATCH] Comentarios en css --- src/styles/main.css | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/styles/main.css b/src/styles/main.css index deb0b49..f1acc84 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -1,3 +1,4 @@ +/*Colorscheme*/ :root { --white: hsl(0, 0%, 99%); --gray-1: hsl(0, 0%, 95%); @@ -8,6 +9,8 @@ --red: hsl(354, 81%, 56%); } + +/*Modificacion basica de elementos*/ body { max-width: 75em; margin: 0 auto; @@ -42,6 +45,7 @@ a:hover, button.link:hover { text-decoration: underline; } +/*Navbar*/ .nav { display: flex; min-height: 3.25em; @@ -58,6 +62,7 @@ a:hover, button.link:hover { margin-left: 1em; } +/*Pagination*/ ul.pagination { display: flex; margin: 1em auto; @@ -82,10 +87,8 @@ ul.pagination { color: white; } -.full-width { - width: 100%; -} +/*Input with icon*/ .input-with-icon { display: flex; } @@ -99,6 +102,8 @@ ul.pagination { background: white; } + +/*Lista de entidades*/ ul.entity_list { display: flex; flex-direction: column; @@ -135,3 +140,7 @@ li.entity a .small { color: var(--gray-3); } +/*Utils*/ +.full-width { + width: 100%; +}