Praticando um pouco do editor vim
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

35 lines
428 B

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: lightgray;
text-align: center;
margin: 25px;
display: flex;
flex-direction: column;
gap: 10px;
}
h1 {
font-size: 45px;
}
p {
margin-top: 50px;
font-size: 20px;
}
table {
background-color: lightblue;
}
.data-running {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin-top: 15px;
}