vdk2ch/styles/style.css

69 lines
1.2 KiB
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;
border-radius: 10px 0px 0px 10px;}
.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;
border-radius: 0px 10px 10px 0px;}
h1 {
color: brown;
font-size: 72px;
}
.title {
font-style: italic;
}
.button:hover {
background-color: blue;
}
.main-wrapper {
width: 700px;
background-color: #afacac;
margin-left: auto;
margin-right: auto;
}
.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;
}