47 lines
967 B
CSS
47 lines
967 B
CSS
.back {
|
|
margin-top: 5%;
|
|
background: linear-gradient(45deg, #d1c3fc, #9bc4fc);
|
|
border-radius: 22px;
|
|
border: 2px solid #ffffff;
|
|
width: 20%;
|
|
margin-left: 40%;
|
|
height: 8%;
|
|
font-size: 1.5vw;
|
|
}
|
|
.back_text {
|
|
margin-top: 4%;
|
|
text-align: center;
|
|
}
|
|
.header_title {
|
|
font-size: 2.5vw;
|
|
text-align: center;
|
|
color: white;
|
|
width: auto;
|
|
height: auto;
|
|
margin-top: 15px;
|
|
transition: font-size 0.5s ease-in, text-shadow 1s ease-in;
|
|
}
|
|
.header_title:hover {
|
|
font-size: 3vw;
|
|
text-shadow: 0px 0px 20px #ffffff;
|
|
}
|
|
.article {
|
|
width 60%;
|
|
margin-left: 20%;
|
|
margin-right: 20%;
|
|
background: linear-gradient(45deg, #d1c3fc, #9bc4fc);
|
|
border: 2px solid #ffffff;
|
|
border-radius: 22px;
|
|
}
|
|
.article_text_back {
|
|
margin-top: 5%;
|
|
margin-right: 5%;
|
|
margin-left: 5%;
|
|
margin-bottom: 5%;
|
|
}
|
|
.article_text {
|
|
font-size: 1.5vw;
|
|
text-align: center;
|
|
color: white;
|
|
text-align: justify;
|
|
} |