-
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.
- Loading branch information
1 parent
18fce22
commit 3441347
Showing
3 changed files
with
98 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
html { | ||
align-content: center; | ||
background-color: azure; | ||
} | ||
|
||
body { | ||
text-align: center; | ||
color: #0f0500; | ||
|
||
padding-left: 10%; | ||
padding-right: 10%; | ||
justify-content: center; | ||
} | ||
|
||
h2{ | ||
font-weight: bold; | ||
font-family: Verdana, Geneva, Tahoma, sans-serif; | ||
} | ||
|
||
.block { | ||
background-color: aquamarine; | ||
border-radius: 12px; | ||
margin: 10px; | ||
padding-left: 25%; | ||
padding-right: 25%; | ||
justify-content: center; | ||
|
||
} | ||
|
||
.grid { | ||
grid-column: 2; | ||
|
||
|
||
} | ||
|
||
.carta { | ||
width: 200px; | ||
height: 500px; | ||
background-color: darkviolet; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="css/style.css"> | ||
<title>Estudia facil</title> | ||
</head> | ||
<body> | ||
|
||
|
||
<div class="content block"> | ||
<h2>Repeticion Espaciada</h2> | ||
aqui citacion a publicaciones sobre el aprendizaje mediante | ||
metodos de repeticion espaciada | ||
</div> | ||
|
||
<div class="content block"> | ||
imagenes y graficos sobre el tema | ||
</div> | ||
|
||
<div class="content block"> | ||
<h2>Tarjetas anki</h2> | ||
<p>Las tarjetas se utilizan como una guia de estudio, | ||
funcionan con una pregunta y una respuesta, | ||
dependiendo de si respondes correctamente o no, cambiara | ||
el tiempo en que vuelve a aparecer | ||
</p> | ||
</div> | ||
|
||
<div class="content block"> | ||
<h3>Free Packs!</h3> | ||
<p>30 cartas sobre distintos temas universitarios</p> | ||
<div class="grid"> | ||
|
||
<div class="carta">A</div> | ||
<div class="carta">B</div> | ||
<div class="carta">C</div> | ||
<div class="carta">D</div> | ||
|
||
</div> | ||
</div> | ||
<div class="content block"></div> | ||
<div class="content block"></div> | ||
<div class="content block"></div> | ||
|
||
|
||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": {} | ||
} |