Knowledge.CrowdedGames.Group/style.css
2025-04-19 12:26:23 -07:00

59 lines
751 B
CSS

/* Global Things. */
html {
overflow-x: hidden;
text-align: center;
background-color: #5C4756
}
body {
margin: 100px;
border-style: solid groove none ridge;
border-width: 10px;
background-color: #FBDB88;
}
pre {
margin-left: 30px;
margin-right: 30px;
border-style: solid;
border-width: 5px;
background-color: #808080;
}
table {
margin-left: auto;
margin-right: auto;
border-style: dotted;
border-width: 5px;
}
/* Main page stuff. */
.SectionDiv {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.Book {
transition: 1s;
margin-left: auto;
margin-right: auto;
width: 25ch;
height: 300px;
background-color: none;
}
.Book:hover {
width: 30ch;
background-color: #FF9930
}