-
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
1fe8949
commit ea62672
Showing
12 changed files
with
307 additions
and
25 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
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
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,67 @@ | ||
/*Silvia Suárez Prendes, UO277412*/ | ||
|
||
|
||
/*Especificidad: 001*/ | ||
section { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
gap: 1em; | ||
justify-content: space-around; | ||
} | ||
|
||
/*Especificidad: 002*/ | ||
section article { | ||
width: 20%; | ||
color: #000000; | ||
border-radius: 0.85em; | ||
box-shadow: 0 .75ex .75ex #BB9CC0; | ||
background-color: #C1A3A3; | ||
margin: 2em 1em .5em 2em; | ||
text-align: left; | ||
} | ||
|
||
/*Especificidad: 012*/ | ||
article h3:last-of-type { | ||
text-align: center; | ||
margin: auto; | ||
} | ||
|
||
/*Especificidad: 012*/ | ||
article h3:first-of-type { | ||
margin: 1em auto 0.5em 1.5em; | ||
} | ||
|
||
/*Especificidad: 002*/ | ||
article h3 { | ||
font-variant: small-caps; | ||
font-style: normal; | ||
font-size: 1.5em; | ||
margin: 0.75em auto 0 1.5em; | ||
} | ||
|
||
/*Especificidad: 002*/ | ||
section p { | ||
margin: 1em auto 0.5em 1.5em; | ||
} | ||
|
||
/*Especificidad: 002*/ | ||
article img { | ||
align-self: center; | ||
margin: .25em 2em .25em 2em; | ||
margin-left: 2em; | ||
} | ||
|
||
/*Especificidad: 002*/ | ||
article ul { | ||
list-style: circle; | ||
margin: .25em 0.25em .25em 2em; | ||
} | ||
|
||
/*margin: | ||
- entre los elementos | ||
- */ | ||
/*Especificidad: 003*/ | ||
article ul li { | ||
margin: 0.75em auto; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
class Agenda { | ||
|
||
|
||
constructor () { | ||
this.url = "https://ergast.com/api/f1/current"; | ||
this.last_api_call = null; | ||
this.last_api_result = null; | ||
} | ||
|
||
|
||
|
||
|
||
|
||
} |
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,71 @@ | ||
/*Silvia SUárez Prendes, UO277412*/ | ||
|
||
/* Especificidad: 001 */ | ||
header { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
color: #ffffff; | ||
background-color: #886F6F; | ||
box-shadow: 0 0.7ex 1.2ex 0.25ex #694E4E; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
/* Especificidad: 001 */ | ||
/* Especificidad: 001 */ | ||
body, section { | ||
font-family: Vegur, 'PT Sans', Verdana, sans-serif; | ||
color: #000000; | ||
background-color: #d1b7b79a; | ||
margin-left: 2em; | ||
font-size: 1em; | ||
text-align: justify; | ||
padding: 2em; | ||
} | ||
|
||
/* Especificidad: 001*/ | ||
h1 { | ||
font-family: Vegur, 'PT Sans', Verdana, sans-serif; | ||
color: #021a2a; | ||
padding: 1em; | ||
text-transform: uppercase; | ||
text-align: center; | ||
} | ||
|
||
/* Especificidad: 001*/ | ||
/* Especificidad: 001*/ | ||
h2, | ||
h3 { | ||
color: #042034; | ||
} | ||
|
||
/* Especificidad: 001*/ | ||
li { | ||
list-style-position: inside; | ||
display: list-item; | ||
text-align: left; | ||
} | ||
|
||
/* Especificidad: 001*/ | ||
ul { | ||
display: block; | ||
list-style-type: circle; | ||
margin-block-start: 0.5em; | ||
margin-block-end: 1.2em; | ||
margin-inline-start: 0.5em; | ||
margin-inline-end: 0.5em; | ||
padding-inline-start: 0.5em; | ||
} | ||
|
||
/*Especificidad: 001*/ | ||
dt { | ||
font-weight: bold; | ||
margin: 0 1.75em; | ||
} | ||
|
||
/*Especificidad: 001*/ | ||
dd { | ||
font-size: 1em; | ||
margin: 0 3em; | ||
} |
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,63 @@ | ||
/*Silvia Suárez Prendes, UO277412*/ | ||
/*Especificidad: 002*/ | ||
section>article { | ||
display: grid; | ||
/* grid-template-columns: 1fr 1fr; */ | ||
grid-template-areas: | ||
"h3 img" | ||
"p h3" | ||
"ul ul"; | ||
grid-gap: 20px; | ||
width: 40%; | ||
color: #000000; | ||
border-radius: 0.85em; | ||
box-shadow: 0 .75ex .75ex #BB9CC0; | ||
background: #C1A3A3; | ||
margin: 0.75em 1em .5em 2em; | ||
text-align: left; | ||
} | ||
|
||
/*Especificidad: 012*/ | ||
article h3:last-of-type { | ||
text-align: center; | ||
margin: auto; | ||
} | ||
|
||
/*Especificidad: 012*/ | ||
article h3:first-of-type { | ||
margin: 1em auto 0.5em 1.5em; | ||
} | ||
|
||
/*Especificidad: 002*/ | ||
article h3 { | ||
font-variant: small-caps; | ||
font-style: normal; | ||
font-size: 1.5em; | ||
margin: 0.75em auto 0 1.5em; | ||
} | ||
|
||
/*Especificidad: 002*/ | ||
article p { | ||
margin: 0em 0.25em .5em 2em; | ||
text-align: left; | ||
} | ||
|
||
/*Especificidad: 002*/ | ||
article img { | ||
align-self: center; | ||
margin: .25em 0.25em .25em 2em; | ||
} | ||
|
||
/*Especificidad: 002*/ | ||
article ul { | ||
list-style: circle; | ||
margin: .25em 0.25em .25em 2em; | ||
} | ||
|
||
/*margin: | ||
- entre los elementos | ||
- */ | ||
/*Especificidad: 003*/ | ||
article ul li { | ||
margin: 0.75em auto; | ||
} |
Oops, something went wrong.