Skip to content

Commit 84bc21b

Browse files
authored
Add files via upload
1 parent 06d2ccd commit 84bc21b

13 files changed

+1640
-0
lines changed

clase1.html

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="preconnect" href="https://fonts.googleapis.com">
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9+
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;700&display=swap" rel="stylesheet">
10+
<title>Document</title>
11+
<style>
12+
:root {
13+
--white: #FFFFFF;
14+
--black: #000000;
15+
--very-light-pink: #C7C7C7;
16+
--text-input-field: #F7F7F7;
17+
--hospital-green: #ACD9B2;
18+
--sm: 14px;
19+
--md: 16px;
20+
--lg: 18px;
21+
}
22+
body {
23+
margin: 0;
24+
font-family: 'Quicksand', sans-serif;
25+
}
26+
.login {
27+
width: 100%;
28+
height: 100vh;
29+
display: grid;
30+
place-items: center;
31+
}
32+
.form-container {
33+
display: grid;
34+
grid-template-rows: auto 1fr auto;
35+
width: 300px;
36+
}
37+
.logo {
38+
width: 150px;
39+
margin-bottom: 48px;
40+
justify-self: center;
41+
display: none;
42+
}
43+
.title {
44+
font-size: var(--lg);
45+
margin-bottom: 12px;
46+
text-align: center;
47+
}
48+
.subtitle {
49+
color: var(--very-light-pink);
50+
font-size: var(--md);
51+
font-weight: 300;
52+
margin-top: 0;
53+
margin-bottom: 32px;
54+
text-align: center;
55+
}
56+
.form {
57+
display: flex;
58+
flex-direction: column;
59+
}
60+
.label {
61+
font-size: var(--sm);
62+
font-weight: bold;
63+
margin-bottom: 4px;
64+
}
65+
.input {
66+
background-color: var(--text-input-field);
67+
border: none;
68+
border-radius: 8px;
69+
height: 30px;
70+
font-size: var(--md);
71+
padding: 6px;
72+
margin-bottom: 12px;
73+
}
74+
.primary-button {
75+
background-color: var(--hospital-green);
76+
border-radius: 8px;
77+
border: none;
78+
color: var(--white);
79+
width: 100%;
80+
cursor: pointer;
81+
font-size: var(--md);
82+
font-weight: bold;
83+
height: 50px;
84+
}
85+
.login-button {
86+
margin-top: 14px;
87+
margin-bottom: 30px;
88+
}
89+
@media (max-width: 640px) {
90+
.logo {
91+
display: block;
92+
}
93+
}
94+
</style>
95+
</head>
96+
<body>
97+
<div class="login">
98+
<div class="form-container">
99+
<img src="./logos/logo_yard_sale.svg" alt="logo" class="logo">
100+
101+
<h1 class="title">Create a new password</h1>
102+
<p class="subtitle">Enter a new passwrd for yue account</p>
103+
104+
<form action="/" class="form">
105+
<label for="password" class="label">Password</label>
106+
<input type="password" id="password" placeholder="*********" class="input input-password">
107+
108+
<label for="new-password" class="label">Password</label>
109+
<input type="password" id="new-password" placeholder="*********" class="input input-password">
110+
111+
<input type="submit" value="Confirm" class="primary-button login-button">
112+
</form>
113+
</div>
114+
</div>
115+
</body>
116+
</html>

clase10.html

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="preconnect" href="https://fonts.googleapis.com">
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9+
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;700&display=swap" rel="stylesheet">
10+
<title>Document</title>
11+
<style>
12+
:root {
13+
--white: #FFFFFF;
14+
--black: #000000;
15+
--very-light-pink: #C7C7C7;
16+
--text-input-field: #F7F7F7;
17+
--hospital-green: #ACD9B2;
18+
--sm: 14px;
19+
--md: 16px;
20+
--lg: 18px;
21+
}
22+
body {
23+
margin: 0;
24+
font-family: 'Quicksand', sans-serif;
25+
}
26+
.my-order {
27+
width: 100%;
28+
height: 100vh;
29+
display: grid;
30+
place-items: center;
31+
}
32+
.title {
33+
font-size: var(--lg);
34+
margin-bottom: 40px;
35+
}
36+
.my-order-container {
37+
display: grid;
38+
grid-template-rows: auto 1fr auto;
39+
width: 300px;
40+
}
41+
.my-order-content {
42+
display: flex;
43+
flex-direction: column;
44+
}
45+
.order {
46+
display: grid;
47+
grid-template-columns: auto 1fr auto;
48+
gap: 16px;
49+
align-items: center;
50+
margin-bottom: 12px;
51+
}
52+
.order p:nth-child(1) {
53+
display: flex;
54+
flex-direction: column;
55+
}
56+
.order p span:nth-child(1) {
57+
font-size: var(--md);
58+
font-weight: bold;
59+
}
60+
.order p span:nth-child(2) {
61+
font-size: var(--sm);
62+
color: var(--very-light-pink);
63+
}
64+
.order p:nth-child(2) {
65+
text-align: end;
66+
font-weight: bold;
67+
}
68+
</style>
69+
</head>
70+
<body>
71+
<div class="my-order">
72+
<div class="my-order-container">
73+
<h1 class="title">My orders</h1>
74+
75+
<div class="my-order-content">
76+
<div class="order">
77+
<p>
78+
<span>03.25.21</span>
79+
<span>6 articles</span>
80+
</p>
81+
<p>$560.00</p>
82+
<img src="./icons/flechita.svg" alt="arrow">
83+
</div>
84+
85+
<div class="order">
86+
<p>
87+
<span>03.25.21</span>
88+
<span>6 articles</span>
89+
</p>
90+
<p>$560.00</p>
91+
<img src="./icons/flechita.svg" alt="arrow">
92+
</div>
93+
94+
<div class="order">
95+
<p>
96+
<span>03.25.21</span>
97+
<span>6 articles</span>
98+
</p>
99+
<p>$560.00</p>
100+
<img src="./icons/flechita.svg" alt="arrow">
101+
</div>
102+
103+
<div class="order">
104+
<p>
105+
<span>03.25.21</span>
106+
<span>6 articles</span>
107+
</p>
108+
<p>$560.00</p>
109+
<img src="./icons/flechita.svg" alt="arrow">
110+
</div>
111+
</div>
112+
</div>
113+
</div>
114+
</body>
115+
</html>

clase11.html

Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Document</title>
8+
<style>
9+
:root {
10+
--white: #FFFFFF;
11+
--black: #000000;
12+
--very-light-pink: #C7C7C7;
13+
--text-input-field: #F7F7F7;
14+
--hospital-green: #ACD9B2;
15+
--sm: 14px;
16+
--md: 16px;
17+
--lg: 18px;
18+
}
19+
body {
20+
margin: 0;
21+
font-family: 'Quicksand', sans-serif;
22+
}
23+
nav {
24+
display: flex;
25+
justify-content: space-between;
26+
padding: 0 24px;
27+
border-bottom: 1px solid var(--very-light-pink);
28+
}
29+
.menu {
30+
display: none;
31+
}
32+
.logo {
33+
width: 100px;
34+
}
35+
.navbar-left ul,
36+
.navbar-right ul {
37+
list-style: none;
38+
padding: 0;
39+
margin: 0;
40+
display: flex;
41+
align-items: center;
42+
height: 60px;
43+
}
44+
.navbar-left {
45+
display: flex;
46+
}
47+
.navbar-left ul {
48+
margin-left: 12px;
49+
}
50+
.navbar-left ul li a,
51+
.navbar-right ul li a {
52+
text-decoration: none;
53+
color: var(--very-light-pink);
54+
border: 1px solid var(--white);
55+
padding: 8px;
56+
border-radius: 8px;
57+
}
58+
.navbar-left ul li a:hover,
59+
.navbar-right ul li a:hover {
60+
border: 1px solid var(--hospital-green);
61+
color: var(--hospital-green);
62+
}
63+
.navbar-email {
64+
color: var(--very-light-pink);
65+
font-size: var(--sm);
66+
margin-right: 12px;
67+
}
68+
.navbar-shopping-cart {
69+
position: relative;
70+
}
71+
.navbar-shopping-cart div {
72+
width: 16px;
73+
height: 16px;
74+
background-color: var(--hospital-green);
75+
border-radius: 50%;
76+
font-size: var(--sm);
77+
font-weight: bold;
78+
position: absolute;
79+
top: -6px;
80+
right: -3px;
81+
display: flex;
82+
justify-content: center;
83+
align-items: center;
84+
}
85+
@media (max-width: 640px) {
86+
.menu {
87+
display: block;
88+
}
89+
.navbar-left ul {
90+
display: none;
91+
}
92+
.navbar-email {
93+
display: none;
94+
}
95+
}
96+
</style>
97+
</head>
98+
<body>
99+
<nav>
100+
<img src="./icons/icon_menu.svg" alt="menu" class="menu">
101+
102+
<div class="navbar-left">
103+
<img src="./logos/logo_yard_sale.svg" alt="logo" class="logo">
104+
105+
<ul>
106+
<li>
107+
<a href="/">All</a>
108+
</li>
109+
<li>
110+
<a href="/">Clothes</a>
111+
</li>
112+
<li>
113+
<a href="/">Electronics</a>
114+
</li>
115+
<li>
116+
<a href="/">Furnitures</a>
117+
</li>
118+
<li>
119+
<a href="/">Toys</a>
120+
</li>
121+
<li>
122+
<a href="/">Others</a>
123+
</li>
124+
</ul>
125+
</div>
126+
127+
<div class="navbar-right">
128+
<ul>
129+
<li class="navbar-email">platzi@example.com</li>
130+
<li class="navbar-shopping-cart">
131+
<img src="./icons/icon_shopping_cart.svg" alt="shopping cart">
132+
<div>2</div>
133+
</li>
134+
</ul>
135+
</div>
136+
</nav>
137+
</body>
138+
</html>

0 commit comments

Comments
 (0)