Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
nunesjaqueline authored Jun 7, 2022
1 parent c88c030 commit eedc3f9
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap');

body {
background-color: pink;
font-family: 'Roboto', sans-serif;
margin: 0px;

}

nav {
display: grid;
background-color: white;
box-sizing: border-box;
height: 100px;
place-items: center;

}

.nav-center {
display: flex;
justify-content: space-around;
align-items: center;
width: 90vw;
}

.nav-left {
display: flex;
justify-content: space-between;
align-items: center;
width: 6vw;
}

main {
display: grid;
place-items: center;
}

.container {
display: block;
text-align: center;
justify-content: space-between;
align-items: center;
}

.container h2 {
background-color: black;
color: white;
border-radius: 10px;
padding: 20px;
}
.btn {
background-color: transparent;
border: solid black;
border-radius: 10px;
}

.btn:hover {
background-color: black;
color: white;
}

.container span {
color: #007FFF;
}

0 comments on commit eedc3f9

Please sign in to comment.