33 lines
618 B
CSS
33 lines
618 B
CSS
#warningBlock{
|
|
height:30vh;
|
|
display:flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#warningBox{
|
|
color:white;
|
|
font-family: 'Wellfleet',cursive;
|
|
font-size:2vw
|
|
}
|
|
|
|
#warningAdvice{
|
|
color:rgb(65, 65, 65);;
|
|
font-family: 'Wellfleet',cursive;
|
|
font-size:2vw
|
|
}
|
|
|
|
|
|
#returningButton{
|
|
font-family: 'Wellfleet', cursive;
|
|
display:block;
|
|
color:white;
|
|
font-size:2vw;
|
|
background-image:linear-gradient(#057B26,#044616);
|
|
border: 0.3vw solid black;
|
|
border-radius: 2.2vw;
|
|
padding:0.7vw 1.5vw 0.7vw 1.5vw;
|
|
cursor:pointer;
|
|
}
|
|
|