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.
 
 
 

56 lines
732 B

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
color: #fff;
background-color: #000;
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;
color: #000;
}
.datas {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin-top: 15px;
}
.datas-running {
border: none;
padding: 16px 32px;
border-radius: 16px;
}
#button {
border: none;
margin-left: 40px;
padding: 16px 32px;
border-radius: 16px;
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
background-color: blue;
color: #fff;
}