46 lines
835 B
CSS
46 lines
835 B
CSS
|
.hello {
|
||
|
width: 700px;
|
||
|
background-color: orange;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
padding-top: 50px;
|
||
|
padding-bottom: 50px;
|
||
|
}
|
||
|
.hellotext {color: white;
|
||
|
text-align: center;
|
||
|
font-size: 30px;
|
||
|
font-weight: 800;
|
||
|
text-transform: uppercase;}
|
||
|
.message {
|
||
|
border-radius: 8px;
|
||
|
background-color: bisque;
|
||
|
width: 700px;
|
||
|
min-height: 50px;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
.messagecontent {
|
||
|
padding-left: 10px;
|
||
|
padding-top: 10px;
|
||
|
}
|
||
|
.textplace {width: 550px;}
|
||
|
.messagewraper {width: 700px;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
margin-top: 10px;
|
||
|
display: flex;}
|
||
|
.button {width: 150px;
|
||
|
display: block;
|
||
|
background-color: rgb(255, 84, 22);
|
||
|
cursor: pointer;}
|
||
|
|
||
|
h1 {
|
||
|
color: brown;
|
||
|
font-size: 72px;
|
||
|
}
|
||
|
.title {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
.button:hover {
|
||
|
background-color: blue;
|
||
|
}
|