Created
November 23, 2023 17:10
-
-
Save uchoamaster/29ed0240c01670fc8cc6b936200b604b to your computer and use it in GitHub Desktop.
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
@import url("https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"); | |
*{ | |
margin:0; | |
padding:0; | |
box-sizing: border-box; | |
} | |
body{ | |
background-image: linear-gradient(rgb(7, 11, 91), rgb(102, 207, 100)); | |
} | |
.tarefas{ | |
max-width: 700px; | |
background-color: white; | |
border-radius: 20px; | |
padding:20px; | |
text-align: center; | |
font-size: 20px; | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
justify-content: center; | |
} | |
.container { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment