2022-10-13 21:31:03 +10:00
|
|
|
.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;
|
|
|
|
}
|
2022-10-13 22:32:05 +10:00
|
|
|
.textplace {width: 550px;
|
|
|
|
border-radius: 10px 0px 0px 10px;}
|
2022-10-13 21:31:03 +10:00
|
|
|
.messagewraper {width: 700px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-top: 10px;
|
2022-10-13 22:32:05 +10:00
|
|
|
display: flex;
|
|
|
|
|
|
|
|
}
|
2022-10-13 21:31:03 +10:00
|
|
|
.button {width: 150px;
|
|
|
|
display: block;
|
|
|
|
background-color: rgb(255, 84, 22);
|
2022-10-13 22:32:05 +10:00
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 0px 10px 10px 0px;}
|
2022-10-13 21:31:03 +10:00
|
|
|
|
|
|
|
h1 {
|
|
|
|
color: brown;
|
|
|
|
font-size: 72px;
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
.button:hover {
|
|
|
|
background-color: blue;
|
2022-10-14 00:25:42 +10:00
|
|
|
}
|
|
|
|
.main-wrapper {
|
|
|
|
width: 700px;
|
|
|
|
background-color: #afacac;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
|
2022-10-15 15:02:35 +10:00
|
|
|
}
|
|
|
|
.ugly {
|
|
|
|
display: block;
|
|
|
|
width: 500px;
|
|
|
|
padding-top: 30px;
|
|
|
|
padding-bottom: 30px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
background-color: chartreuse;
|
|
|
|
}
|
|
|
|
.ugly:hover {
|
|
|
|
background-color: darkgoldenrod;
|
2022-10-13 21:31:03 +10:00
|
|
|
}
|