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 {
--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%;
}