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

Trilha CSS Desafio 01 #116

Open
wants to merge 1 commit into
base: main
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
7 changes: 7 additions & 0 deletions assets/Reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700;900&display=swap');

* {
font-family: 'Raleway', sans-serif;
box-sizing: border-box;
margin: 0;
}
151 changes: 151 additions & 0 deletions assets/Style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
@import url(./Reset.css);

body {
background-color: black;
}

p {
color: white;
}

section {
margin: 100px auto;
}

h2 {
font-size: 2rem;
color: #33A8DB;
font-weight: bold;
letter-spacing: 4px;
text-transform: uppercase;
margin-bottom: 24px;
}

.banner {
background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(49, 168, 221, .2), rgba(0, 0, 0, .6)), url(./images/banner.png);
background-size: cover;
background-repeat: no-repeat;
height: 600px;
padding-top: 60px;
border-bottom: 1px solid #33A8DB80;
}

.banner .banner-content {
color: white;
width: 600px;
margin: auto;
text-align: center;
}

.banner h1 {
font-size: 2.5rem;
font-weight: 900;
text-transform: uppercase;
color: transparent;
background: -webkit-linear-gradient(#33A8DB, #1472B7);
background-clip: text;
-webkit-background-clip: text;
}

.banner p {
font-size: 1.25rem;
margin: 16px 0 24px;
}

.banner .logo {
background-color: rgba(0, 0, 0, .2);
height: 260px;
width: 260px;
margin: auto;
border-radius: 50%;
padding: 16px;
margin-bottom: 16px;
}

.banner .logo img {
margin: auto;
width: 100%;
height: 100%;
object-fit: contain;
}

.banner .banner-content button {
color: #31A8DD;
font-size: 1rem;
font-weight: bold;
padding: 16px 32px;
text-transform: uppercase;
letter-spacing: 4px;
background-color: transparent;
border-image: linear-gradient(#3BA1CD, #1572B7);
border-image-slice: 10;
border-radius: 30px;
}

#course-content {
width: 800px;
text-align: center;
}

#course-content .modules-list {
margin: 24px 0;
}

#course-content .modules-list .module {
color: white;
width: 530px;
margin: 0 auto 24px;
border: 1px solid #33A8DB;
background-color: #252525;
padding: 16px;
border-radius: 100px;
box-shadow: inset -5px 6px 8px rgba(0, 0, 0, .7);
}

#course-content .modules-list .module span {
color: #33A8DB;
}

#transform-world {
height: 560px;
background-size: cover;
background-image: url(./images/woman-code.png);
background-attachment: fixed;
border-top: 1px solid #33A8DB80;
border-bottom: 1px solid #33A8DB80;
padding: 200px;
}

#transform-world p {
font-weight: 900;
font-size: 2.5rem;
text-transform: lowercase;
max-width: 250px;
text-shadow: 3px 2px #33A8DB;
}

#professional-challenges {
text-align: center;
width: 800px;
}

#professional-challenges img {
margin: 32px 0;
}

footer {
padding: 60px 0;
text-align: center;
background-image: linear-gradient(rgba(50, 168, 219, .0), rgba(50, 168, 219, .2));
border-top: 1px solid #33A8DB80;
}

footer .dio-logo {
width: 300px;
}

footer a {
color: #33A8DB;
font-weight: bold;
text-decoration: none;
}
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trilha de CSS - DIO</title>
<link rel="stylesheet" href="./assets/Style.css">
</head>
<body>
<header class="banner">
<div class="banner-content">
<div class="logo">
<img src="assets/images/logo.png" title="Logotipo Trilha de CSS DIO" alt="Logotipo Trilha de CSS DIO">
<img src="./assets/images/logo.png" title="Logotipo Trilha de CSS DIO" alt="Logotipo Trilha de CSS DIO">
</div>
<h1>Trilha de CSS da DIO</h1>
<p>A nova Trilha de CSS da DIO está disponível. Acesse já e aprenda do zero como desenvolver sites profissionais.</p>
Expand Down