Skip to content

Commit a80c8cb

Browse files
committed
Fonts
1 parent 7078890 commit a80c8cb

8 files changed

Lines changed: 52 additions & 10 deletions

File tree

01-NavBar - Bootstrap - Offcanvas/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
1+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&family=Ubuntu:wght@300;400&display=swap');
22
*{
33
font-family: 'Ubuntu', sans-serif!important;
44
color: #F9F5F6!important;

01-NavBar - Bootstrap/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
1+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&family=Ubuntu:wght@300;400&display=swap');
22
*{
33
font-family: 'Ubuntu', sans-serif!important;
44
color: #F9F5F6!important;

01-NavBar - Javascript/index.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
<!-- Favicon -->
99
<link rel="icon" type="image/png" sizes="32x32" href="../favicon/ms-icon-32x32.png">
1010
<link rel="apple-touch-icon" sizes="60x60" href="../favicon/apple-icon-60x60.png">
11-
<!-- Fuentes -->
12-
<link rel="preconnect" href="https://fonts.googleapis.com">
13-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
14-
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap" rel="stylesheet">
1511
<!-- Hojas de estilos -->
1612
<link rel="stylesheet" href="styles.css">
1713
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

01-NavBar - Javascript/styles.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&family=Ubuntu:wght@300;400&display=swap');
12
* {
23
margin: 0;
34
padding: 0;

01-NavBar/index.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
<!-- Favicon -->
99
<link rel="icon" type="image/png" sizes="32x32" href="../favicon/ms-icon-32x32.png">
1010
<link rel="apple-touch-icon" sizes="60x60" href="../favicon/apple-icon-60x60.png">
11-
<!-- Fuentes -->
12-
<link rel="preconnect" href="https://fonts.googleapis.com">
13-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
14-
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap" rel="stylesheet">
1511
<!-- Hojas de estilos -->
1612
<link rel="stylesheet" href="styles.css">
1713
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

01-NavBar/styles.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&family=Ubuntu:wght@300;400&display=swap');
12
* {
23
margin: 0;
34
padding: 0;

02 - Login Form/index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="./styles.css">
7+
<title>Document</title>
8+
</head>
9+
<body>
10+
11+
<div class="form-container">
12+
13+
</div>
14+
15+
</body>
16+
</html>

02 - Login Form/styles.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&family=Ubuntu:wght@300;400&display=swap');
2+
* {
3+
margin: 0;
4+
padding: 0;
5+
color: #F9F5F6;
6+
list-style: none;
7+
text-decoration: none;
8+
box-sizing: border-box;
9+
font-family: 'Ubuntu', sans-serif;
10+
-webkit-tap-highlight-color: transparent;
11+
}
12+
13+
:root{
14+
--bg-color: linear-gradient(217deg, #ee6fca, rgba(255, 0, 0, 0) 70.71%),
15+
linear-gradient(127deg, #67bad4, rgba(0, 255, 0, 0) 70.71%),
16+
linear-gradient(336deg, #24b6e7, rgba(0, 0, 255, 0) 70.71%);
17+
--altura: 5rem;
18+
}
19+
20+
body{
21+
background-color: #dbcce9;
22+
display: flex;
23+
align-items: center;
24+
justify-content: center;
25+
}
26+
27+
28+
.form-container{
29+
width: 350px;
30+
height: 450px;
31+
background: var(--bg-color);
32+
}

0 commit comments

Comments
 (0)