Comentarios en css

This commit is contained in:
Daniel Cortes
2020-06-03 23:19:29 -04:00
parent fe35a503df
commit d64d425c98

View File

@@ -1,3 +1,4 @@
/*Colorscheme*/
:root { :root {
--white: hsl(0, 0%, 99%); --white: hsl(0, 0%, 99%);
--gray-1: hsl(0, 0%, 95%); --gray-1: hsl(0, 0%, 95%);
@@ -8,6 +9,8 @@
--red: hsl(354, 81%, 56%); --red: hsl(354, 81%, 56%);
} }
/*Modificacion basica de elementos*/
body { body {
max-width: 75em; max-width: 75em;
margin: 0 auto; margin: 0 auto;
@@ -42,6 +45,7 @@ a:hover, button.link:hover {
text-decoration: underline; text-decoration: underline;
} }
/*Navbar*/
.nav { .nav {
display: flex; display: flex;
min-height: 3.25em; min-height: 3.25em;
@@ -58,6 +62,7 @@ a:hover, button.link:hover {
margin-left: 1em; margin-left: 1em;
} }
/*Pagination*/
ul.pagination { ul.pagination {
display: flex; display: flex;
margin: 1em auto; margin: 1em auto;
@@ -82,10 +87,8 @@ ul.pagination {
color: white; color: white;
} }
.full-width {
width: 100%;
}
/*Input with icon*/
.input-with-icon { .input-with-icon {
display: flex; display: flex;
} }
@@ -99,6 +102,8 @@ ul.pagination {
background: white; background: white;
} }
/*Lista de entidades*/
ul.entity_list { ul.entity_list {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@@ -135,3 +140,7 @@ li.entity a .small {
color: var(--gray-3); color: var(--gray-3);
} }
/*Utils*/
.full-width {
width: 100%;
}