Skip to content

Instantly share code, notes, and snippets.

@kelcheone
Created March 18, 2023 19:59
Show Gist options
  • Save kelcheone/a689b9f29318b394efd886ec0bb04355 to your computer and use it in GitHub Desktop.
Save kelcheone/a689b9f29318b394efd886ec0bb04355 to your computer and use it in GitHub Desktop.
* {
box-sizing: border-box;
background-color: rgb(90, 88, 88);
color: whitesmoke;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
margin: 0;
padding: 0;
}
#main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 300px;
height: 500;
margin: 0;
padding: 0;
border-radius: 10px;
background-color: #939191;
}
#random-number {
font-size: 50px;
font-weight: bold;
margin: 0;
padding: 0;
background-color: #939191;
color: black;
}
#rand-container {
background-color: #939191;
color: black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment