Resolução dos exercícios propostos.
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.
 
 
 

93 lines
1.6 KiB

@import url("./variables.css");
*{padding: 0; margin: 0; box-sizing: border-box; font-family: 'Roboto', sans-serif;}
body, html{
width: 100%;
height: 100%;
}
a{
text-decoration: none;
}
header{
min-height: 5vh;
width: 100%;
background-color: var(--primary-color);
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5em 1.5em;
border-bottom: 2px solid #000;
}
header > .header__logo > img {
width: 50px;
}
header > .header__menu > ul{
display: flex;
gap: 1em;
}
header > .header__menu > ul > li{
list-style: none;
}
header > .header__menu > ul > li > a{
list-style: none;
color: #FFF;
font-weight: bold;
}
main{
min-height: 87vh;
background-color: #CCC;
}
.container{
width: 100%;
min-height: 87vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
footer{
min-height: 7vh;
background-color: var(--primary-color);
display: flex;
justify-content: center;
align-items: center;
border-top: 2px solid #000;
}
.main__table {
border-collapse: collapse;
width: 100%;
max-width: 800px;
margin: 0 auto;
font-family: Arial, sans-serif;
font-size: 14px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.main__table > thead {
background-color: #CCC;
border: 2px solid #000;
text-align: left;
padding: 1em;
}
.main__table > thead > tr th {
padding: 1em;
border: 2px solid #000;
}
.main__table > th, td {
padding: 10px;
text-align: left;
border: 2px solid #000;
}