-
Notifications
You must be signed in to change notification settings - Fork 640
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Subo README, carpeta img, imagen, index.html y style.css
- Loading branch information
1 parent
14e1b6f
commit 2976d51
Showing
4 changed files
with
132 additions
and
31 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,31 +1,62 @@ | ||
body { | ||
background-color: #777; | ||
background-color: #ddd; | ||
font-size: 14px; | ||
font-family: "montserrat","Roboto", sans-serif; | ||
max-width: 50em; | ||
max-width: 70%; | ||
margin: 0 auto; | ||
border: 2px solid blue; | ||
line-height: 1.5; | ||
line-height: 1.1em; | ||
padding: 0.5em 1em; | ||
} | ||
h1, | ||
h2, | ||
strong { | ||
color: #333; | ||
} | ||
|
||
h2 { | ||
margin-top: 0.5em; | ||
padding-top: 0.5em; | ||
header { | ||
background-color: #263d36; | ||
background-image: url("/img/Alhambra.jpg"); | ||
background-position: center bottom; | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
line-height: 1.2; | ||
padding: 15vw 2em; | ||
text-align: center; | ||
} | ||
/* header img { | ||
display: inline-block; | ||
height: 120px; | ||
vertical-align: top; | ||
width: 120px; | ||
} */ | ||
|
||
header h1 { | ||
color: whitesmoke; | ||
font-size: 2.5em; | ||
font-weight: 500; | ||
} | ||
|
||
header a { | ||
border: 1px solid #2919d6; | ||
border-radius: 50px; | ||
color: whitesmoke; | ||
font-size: 0.8em; | ||
font-weight: 800; | ||
letter-spacing: 0.2em; | ||
padding: 1em 2em; | ||
text-transform: uppercase; | ||
text-decoration: none; | ||
transition: none 200ms ease-out; | ||
transition-property: color, background; | ||
} | ||
|
||
header a:hover { | ||
background: #2919d6; | ||
color: whitesmoke; | ||
} | ||
|
||
h1, h2{ | ||
line-height: 1.5em; | ||
} | ||
|
||
span{ | ||
font-weight: bold; | ||
} | ||
|
||
a { | ||
color: #055; | ||
} | ||
/* body { | ||
color: #566b78; | ||
} */ |