65 lines
667 B
CSS
65 lines
667 B
CSS
body {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
div#body-div {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
border-radius: 25px;
|
|
background-color: #222;
|
|
padding: 30px;
|
|
}
|
|
|
|
div#heading-div {
|
|
margin: auto;
|
|
width: 200px;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
|
|
.h1orange {
|
|
color: rgb(238, 117, 47);
|
|
}
|
|
|
|
.h1blue {
|
|
color: rgb(114, 198, 250);
|
|
}
|
|
|
|
.h1yellow {
|
|
color: rgb(255, 253, 84);
|
|
}
|
|
|
|
.h1green {
|
|
color: rgb(88, 164, 92);
|
|
}
|
|
|
|
.select-div {
|
|
float: left;
|
|
width: 200px;
|
|
}
|
|
|
|
.select-div select {
|
|
width: 130px;
|
|
}
|
|
|
|
#results-div {
|
|
padding: 20px 0;
|
|
font-size: 20px;
|
|
}
|
|
|
|
#results-name {
|
|
color: pink;
|
|
}
|
|
|
|
.clearfix {
|
|
overflow: auto;
|
|
}
|
|
|
|
.clearfix::after {
|
|
content: "";
|
|
clear: both;
|
|
display: table;
|
|
} |