Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarauj04 authored Nov 2, 2024
1 parent 647096b commit ffe0af4
Showing 1 changed file with 83 additions and 7 deletions.
90 changes: 83 additions & 7 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ body {

.cabecalho {
display: flex;
flex-direction: inline;
flex-direction: inline;
justify-content: space-between;
padding: 2%;
}
Expand Down Expand Up @@ -68,7 +68,7 @@ body {
}

#conteudo__texto {
width: 330px;
width: 270px;
height: 320px;
font-size: 20px;
color: #f1a22dfa;
Expand All @@ -87,9 +87,9 @@ body {
border: 4px solid var(--cor-informacao);
border-radius: 25px;
background-color: var(--cor-secundaria);
width: 350px;
height: 440px;
margin-right: 4%;
width: 380px;
height: 430px;
margin-left: 4%;
}

#logo h1 {
Expand Down Expand Up @@ -130,6 +130,7 @@ margin-top: 6%;

.container_bot button:hover {
background-color: var(--cor-seta);
border: 2px solid var(--cor-informacao);
}

.btn_copiar {
Expand All @@ -147,6 +148,7 @@ cursor: pointer;

.btn_copiar:hover{
background-color: #3f1505;

}

.aviso {
Expand Down Expand Up @@ -180,10 +182,11 @@ left: 30px
}

.rodape h2{
font-size: 14px;
color: var(--coraviso);
font-size: 20px;
color: #c2c908;
}


.icons__link ion-icon {
display: inline-flex;
justify-content: space-between;
Expand All @@ -198,3 +201,76 @@ left: 30px
color: var(--cor-icone);
transform: scale(1.2);
}

/*responsividade*/
@media(max-width: 750px),
@media (max-width: 460px){

body{
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
backdrop-filter: blur(1px);
}

header {
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
background-color: transparent;
}

main {
flex-direction: column;
align-items: center;
}

.container_input, #conteudo__texto {
max-width: 175px;
}

#logo {
max-width: 350px;
max-height: 380px;
padding: 2%;
margin-bottom: 5px;
}

#logo img {
max-width: 150px;
max-height: 150px;
width: auto;
height: auto;
margin-top: 6%;
}

.aviso {
width: 226px;
height: 16px;
gap: 0px;
opacity: 0.8px;
font-size: 15px;
font-weight: bold;
margin: 5px;
}

.container_bot button {
width: 120px;
height: 50px;
margin-top: 10px;
}

.btn_copiar {
height: 50px;
margin: 5px;
}

.rodape h2{
margin-top: 0;
padding: 10px;
font-weight: 20px;
font-size: 20px;
}
}

0 comments on commit ffe0af4

Please sign in to comment.