-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cambios: js se modifico a for.each la funcion que hacia render, modif…
…icacion de classes en css
- Loading branch information
Showing
2 changed files
with
71 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,39 @@ | ||
body { | ||
margin: 0; | ||
margin: 0; | ||
} | ||
.container { | ||
border: 30px solid rgba(62, 60, 63,.20); | ||
margin:10px; | ||
|
||
} | ||
.container h1 { | ||
font-size: 35px; | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-weight: bold; | ||
grid-area: h1; | ||
padding-left: 20px; | ||
border: 30px solid rgba(62, 60, 63, 0.2); | ||
margin: 10px; | ||
} | ||
.container h1 { | ||
font-size: 35px; | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-weight: bold; | ||
grid-area: h1; | ||
padding-left: 20px; | ||
} | ||
|
||
|
||
#users { | ||
|
||
border-radius:5px; | ||
background-color:rgba(205, 185, 224, .20); | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-size: 1em; | ||
display: grid; | ||
grid-template-columns: repeat( 2 , 1fr); | ||
grid-template-rows: repeat(auto, flex); | ||
grid-gap: 30px; | ||
padding: 20px; | ||
line-height: 30px; | ||
|
||
.users { | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
grid-template-rows: repeat(auto, flex); | ||
grid-gap: 30px; | ||
} | ||
|
||
|
||
|
||
.p { | ||
display: flex; | ||
display: flex; | ||
} | ||
|
||
.user { | ||
cursor: pointer; | ||
border-radius: 5px; | ||
background-color: rgba(205, 185, 224, 0.2); | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-size: 1em; | ||
padding: 20px; | ||
line-height: 30px; | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
grid-template-rows: repeat(auto, flex); | ||
grid-gap: 30px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters