mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 20:55:50 +00:00
76 lines
1.0 KiB
CSS
76 lines
1.0 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
text-decoration: inherit;
|
|
color: inherit;
|
|
font: inherit;
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
html {
|
|
box-sizing: border-box;
|
|
font-family: sans-serif;
|
|
text-decoration: none;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.main {
|
|
flex: 0 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 1rem;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
max-width: 50rem;
|
|
background-color: #efefef;
|
|
border: 1px solid #666;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.header {
|
|
flex: 0 0;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.main-logo {
|
|
flex: 0 0;
|
|
width: 20rem;
|
|
}
|
|
|
|
.stats {
|
|
flex: 0 0 20rem;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.stat {
|
|
display: block;
|
|
}
|
|
|
|
.stat-name {
|
|
display: inline;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.button-list {
|
|
flex: 0 0;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.button {
|
|
display: inline-block;
|
|
border: 1px solid #666;
|
|
padding: 0.3em 1em;
|
|
margin: 0 0.2rem;
|
|
} |