mirror of
https://github.com/wassname/RubberGlove.git
synced 2026-06-27 16:28:42 +08:00
36 lines
500 B
CSS
36 lines
500 B
CSS
body {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
.header {
|
|
height: 60px;
|
|
width: 100%;
|
|
}
|
|
#bomTree {
|
|
height: calc(100% - 60px);
|
|
overflow: auto;
|
|
}
|
|
.title {
|
|
font-size: 48px;
|
|
font-weight: bold;
|
|
color: #92adef;
|
|
}
|
|
.donateButton {
|
|
float: right;
|
|
margin-top: 10px;
|
|
margin-right: 15px;
|
|
}
|
|
.quote {
|
|
font-size: 70%;
|
|
display: inline-block;
|
|
}
|
|
.quote .attribution {
|
|
font-weight: bold;
|
|
text-align: right;
|
|
}
|
|
.quote .publication {
|
|
font-style: italic;
|
|
} |