Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feedback #1

Open
wants to merge 4 commits into
base: feedback
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
# Equipo TU_EQUIPO

Aquí deberás escribir toda la información de tu proyecto.

Antes de comenzar, por favor revisa las [las instrucciones](INSTRUCTIONS.md).

![Hack Hero gif](https://media.giphy.com/media/IbHp2s31XVjCyfGZ5L/giphy.gif)
# landing_tutor
138 changes: 138 additions & 0 deletions css/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,800");

html,
body {
width: 100%;
height: 100%;
min-height: 18em;
margin: 0;
}

.side-tutor {
background-image: url("https://images.pexels.com/photos/4145196/pexels-photo-4145196.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
}

.side-alumno {
background-image: url("https://images.pexels.com/photos/1462631/pexels-photo-1462631.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
}

.split-pane {
padding-top: 1em;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
height: 50%;
width: 50%;
min-height: 9em;
font-size: 2em;
color: #dff2eb;
font-family: "Open Sans", sans-serif;
font-weight: 300;
padding: 0;
}

.split-pane.side-alumno {
float: left;
}
.split-pane.side-tutor {
float: left;
}

@media (min-width: 500px) {
.split-pane {
height: 100%;
}
}
.split-pane > div {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
text-align: center;
}
.split-pane > div .text-content {
line-height: 1.6em;
margin-bottom: 1em;
}
.split-pane > div .text-content .big {
font-size: 2em;
}
.split-pane > div img {
height: 1.3em;
}
@media (max-width: 500px) {
.split-pane > div img {
display: none;
}
}
.split-pane a.button-alumno,
.split-pane a.button-tutor {
font-family: "Open Sans", sans-serif;
font-weight: 800;
background: #dff2eb;
border: 0cm;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
width: 15em;
padding: 0.7em;
font-size: 0.5em;
-moz-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
-webkit-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
text-decoration: none;
color: black;
display: inline-block;
cursor: pointer;
}
.split-pane a.button-alumno:hover,
.split-pane a.button-tutor:hover {
text-decoration: none;
background-color: white;
border-color: white;
cursor: pointer;
}
a.button-alumno:hover {
color: #f28729;
}
a.button-tutor:hover {
color: #0540f2;
}

#split-pane-or {
font-size: 2em;
color: white;
font-family: "Open Sans", sans-serif;
text-align: center;
width: 100%;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}

#split-pane-or > div img {
height: 2.5em;
}

@media (min-width: 500px) {
#split-pane-or {
font-size: 3em;
}
}
.big {
font-size: 2em;
}

#slogan img {
height: 0.7em;
}
.bold {
text-transform: uppercase;
}
.big {
font-weight: 800;
}
Loading